Skip to content

Commit

Permalink
update Cargo.tomls
Browse files Browse the repository at this point in the history
  • Loading branch information
pavadeli committed May 17, 2024
1 parent e196c3b commit 470359b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
10 changes: 4 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,14 @@ axum = "0.6.20"
clap = "4.5.4"
color-eyre = "0.6.3"
console-subscriber = "0.2.0"
ctreg = "1.0.2"
futures = "0.3.30"
hyper = "0.14"
itertools = "0.12.1"
once_cell = "1.19.0"
pin-project = "1.1.5"
prost = "0.12"
rstest = "0.18.2"
serde = "1.0.197"
serde_json = "1.0.115"
serde_with = "3.7.0"
Expand All @@ -40,17 +43,12 @@ time = "0.3.34"
tokio = "1.37.0"
tokio-stream = "0.1.15"
tonic = "0.11"
tonic-build = "0.11"
tower = "0.4.13"
tower-http = "0.4.4"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"

# [workspace.dev-dependencies]
rstest = "0.18.2"

# [workspace.build-dependencies]
tonic-build = "0.11"

[workspace.lints.rust]
unsafe_code = "forbid"
explicit_outlives_requirements = "forbid"
Expand Down
4 changes: 2 additions & 2 deletions crates/emulator-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ axum = { workspace = true, features = ["ws"] }
emulator-tracing = { path = "../emulator-tracing" }
firestore-database = { path = "../firestore-database" }
serde_json = { workspace = true }
tokio.workspace = true
tokio = { workspace = true }
tower-http = { workspace = true, features = ["full"] }
tracing.workspace = true
tracing = { workspace = true }

[lints]
workspace = true
4 changes: 2 additions & 2 deletions crates/emulator-tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ console = ["dep:console-subscriber"]

[dependencies]
console-subscriber = { workspace = true, optional = true }
ctreg = "1.0.2"
ctreg = { workspace = true }
itertools = { workspace = true }
once_cell = "1.19.0"
once_cell = { workspace = true }
thiserror = { workspace = true }
time = { workspace = true }
tracing = { workspace = true }
Expand Down

0 comments on commit 470359b

Please sign in to comment.