Bump version to 0.1.2 and refactor database connection handling

This commit is contained in:
2026-01-02 05:55:15 +01:00
parent bda288362a
commit 3772721cdf
3 changed files with 21 additions and 8 deletions

View File

@@ -1,13 +1,14 @@
[package]
name = "k-core"
version = "0.1.1"
version = "0.1.2"
edition = "2024"
[features]
default = ["logging", "db-sqlx", "auth"]
logging = ["dep:tracing", "dep:tracing-subscriber"]
db-sqlx = ["dep:sqlx"]
postgres = ["sqlx/postgres"]
postgres = ["db-sqlx", "sqlx/postgres"]
sqlite = ["db-sqlx", "sqlx/sqlite"]
auth = ["dep:tower-sessions"]
[dependencies]
@@ -22,8 +23,6 @@ tokio = { version = "1.48.0", features = ["full"], optional = true }
sqlx = { version = "0.8.6", features = [
"runtime-tokio",
"macros",
"sqlite",
"postgres",
"chrono",
"uuid",
], optional = true }