Skip to content

Commit fb44b95

Browse files
committed
removes sqlite dependencies, update tower version to 0.5.1
1 parent 31fdd20 commit fb44b95

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

entity_api/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ async-trait = "0.1.83"
1616
password-auth = "1.0.0"
1717
slugify = "0.1.0"
1818
sqlx = { version = "0.8.2", features = ["time", "runtime-tokio"] }
19-
sqlx-sqlite = { version = "0.8.2" }
2019
utoipa = { version = "4.2.0", features = ["axum_extras", "uuid"] }
2120

2221
[dependencies.sea-orm]

service/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ simplelog = { version = "0.12.2", features = ["paris"] }
2222
serde = { version = "1.0.210", features = ["derive"] }
2323
serde_json = "1.0.128"
2424
sqlx = { version = "0.8.3", features = ["time", "runtime-tokio"] }
25-
# sqlx-sqlite = { version = "0.8.3" } # Updated version
2625
tokio = { version = "1.40", features = ["full"] }
27-
tower = { version = "0.5.2", features = ["util", "http"] } # or similar
26+
tower = { version = "0.5.1", features = ["util", "http"] } # or similar
2827
utoipa = { version = "5.3.1", features = ["axum_extras", "uuid"] }
2928
semver = { version = "1.0.23", features = ["serde"] }

web/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ sqlx = { version = "0.8.3", features = ["time", "runtime-tokio"] }
2020
tokio = { version = "1.40", features = [
2121
"full",
2222
] } # Remove the ".0" for consistency
23-
tower = { version = "0.5.2", features = ["util", "http"] } # or similar
23+
tower = { version = "0.5.1", features = ["util", "http"] } # or similar
2424
tower-sessions = { version = "0.14.0" }
2525
tower-sessions-sqlx-store = { version = "0.15.0", features = ["postgres"] }
2626
time = "0.3.36"

0 commit comments

Comments
 (0)