Skip to content

Commit 062f65e

Browse files
fix: move common storage deps to workspace dependencies
1 parent e631919 commit 062f65e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ axum = "0.8"
2828
chrono = { version = "0.4", features = ["serde"] }
2929
clap = { version = "4.5", features = ["derive", "env"] }
3030
config = { version = "0.15", features = ["yaml", "toml", "json"] }
31+
crc32c = "0.6.8"
3132
colored = "3.0.0"
33+
google-cloud-storage = { version = "1.9.0", default-features = false }
3234
hf-hub = { version = "0.4.3", default-features = false, features = [
3335
"tokio",
3436
"rustls-tls",
@@ -39,6 +41,7 @@ modelexpress-client = { path = "modelexpress_client", version = "0.3.0" }
3941
modelexpress-server = { path = "modelexpress_server", version = "0.3.0" }
4042
once_cell = "1.21.3"
4143
prost = "0.13"
44+
rustls = { version = "0.23.37", default-features = false, features = ["ring", "std"] }
4245
rusqlite = { version = "0.37", features = ["bundled", "chrono"] }
4346
serde = { version = "1.0", features = ["derive"] }
4447
serde_json = "1.0"

modelexpress_common/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ chrono = { workspace = true }
3131
clap = { workspace = true }
3232
config = { workspace = true }
3333
jiff = { workspace = true }
34-
google-cloud-storage = { version = "1.9.0", default-features = false }
35-
rustls = { version = "0.23.37", default-features = false, features = ["ring", "std"] }
36-
crc32c = "0.6.8"
34+
google-cloud-storage = { workspace = true }
35+
rustls = { workspace = true }
36+
crc32c = { workspace = true }
3737
futures = { workspace = true }
3838

3939
[dev-dependencies]

0 commit comments

Comments
 (0)