Skip to content

Commit 91b0d3e

Browse files
committed
Add dependencies for example app to top-level Cargo.toml
1 parent 0fe9524 commit 91b0d3e

2 files changed

Lines changed: 13 additions & 9 deletions

File tree

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ async-trait = "0.1.89"
2222
axum = "^0.8"
2323
chrono = "^0.4"
2424
chrono-tz = "^0.10"
25+
clap = "4.5"
2526
darling = "0.21"
2627
displaydoc = "0.2"
2728
fnv = "1"
@@ -51,9 +52,11 @@ testcontainers = "0.25"
5152
thiserror = "2"
5253
tokio = { version = "1" }
5354
tokio-rustls = "0.26"
55+
tokio-util = "0.7"
5456
toml = "0.9"
5557
tower = "0.5"
56-
tracing = "^0.1.37"
58+
tracing = "0.1"
59+
tracing-subscriber = "0.3"
5760
uuid = { version = "1.5.0" }
5861

5962
[workspace.lints.rust]

examples/simple-new-order/Cargo.toml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@ license.workspace = true
77
publish = false
88

99
[dependencies]
10-
async-trait = "0.1.73"
11-
axum = { workspace = true }
12-
clap = { version = "4.4.4", features = ["derive"] }
1310
hotfix = { path = "../../crates/hotfix", features = ["mongodb", "redb"] }
1411
hotfix-status = { path = "../../crates/hotfix-status", features = ["ui"] }
15-
tokio = { version = "1", features = ["full"] }
16-
tokio-util = "0.7"
17-
tracing = "0.1.37"
18-
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
19-
uuid = { version = "1.4.1", features = ["v4"] }
12+
13+
async-trait.workspace = true
14+
axum.workspace = true
15+
clap = { workspace = true, features = ["derive"] }
16+
tokio = { workspace = true, features = ["full"] }
17+
tokio-util.workspace = true
18+
tracing.workspace = true
19+
tracing-subscriber = { workspace = true, features = ["env-filter"] }
20+
uuid = { workspace = true, features = ["v4"] }

0 commit comments

Comments
 (0)