# file: crates/ksp-store-lib/Cargo.toml # version: 2 [package] name = "ksp-store-lib" version.workspace = true edition.workspace = true repository.workspace = true [features] default = ["postgres"] postgres = ["dep:ksp-store-postgres-lib"] [dependencies] ksp-logging-lib = { path = "../ksp-logging-lib" } ksp-store-api = { path = "../ksp-store-api" } ksp-store-postgres-lib = { path = "../ksp-store-postgres-lib", optional = true } [lints] workspace = true