# file: crates/ksp-store-lib/Cargo.toml # version: 1 [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-store-api = { path = "../ksp-store-api" } ksp-store-postgres-lib = { path = "../ksp-store-postgres-lib", optional = true } [lints] workspace = true