chore: move new dependencies to workspace's Cargo.toml
This commit is contained in:
parent
8d1211750b
commit
f99165e452
3 changed files with 5 additions and 3 deletions
|
@ -13,6 +13,8 @@ tokio-util = { version = "0.7.10", features = ["io"] }
|
|||
# Serialization
|
||||
serde = { version = "1.0.197", features = ["derive"] }
|
||||
serde_json = "1.0.114"
|
||||
jsonc-parser = { version = "0.23.0", features = ["serde"] }
|
||||
chrono = { version = "0.4.38", features = ["serde"] }
|
||||
toml = "0.8.4"
|
||||
rbase64 = "2.0.3"
|
||||
prost = "0.12.3"
|
||||
|
|
|
@ -7,6 +7,8 @@ version.workspace = true
|
|||
# Serialization
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
jsonc-parser.workspace = true
|
||||
chrono.workspace = true
|
||||
prost.workspace = true
|
||||
|
||||
# Util
|
||||
|
@ -18,5 +20,3 @@ tracing.workspace = true
|
|||
|
||||
# Internal
|
||||
proto.workspace = true
|
||||
jsonc-parser = { version = "0.23.0", features = ["serde"] }
|
||||
chrono = { version = "0.4.38", features = ["serde"] }
|
||||
|
|
|
@ -15,6 +15,7 @@ rbase64.workspace = true
|
|||
toml.workspace = true
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
chrono.workspace = true
|
||||
|
||||
# Database
|
||||
sqlx.workspace = true
|
||||
|
@ -41,4 +42,3 @@ tracing-bunyan-formatter.workspace = true
|
|||
common.workspace = true
|
||||
data.workspace = true
|
||||
proto.workspace = true
|
||||
chrono = { version = "0.4.38", features = ["serde"] }
|
||||
|
|
Loading…
Reference in a new issue