-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
29 lines (27 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[workspace]
members = ["proxy-http-server", "proxy-http-client", "shared-deps"]
# Only check / build main crates by default (check all with `--workspace`)
default-members = ["proxy-http-server", "proxy-http-client",]
resolver = "2"
# shared dependencies across all applications
[workspace.dependencies]
anyhow = "1"
async-stream = "0.3"
amqprs = { version = "2", features = ["traces"] }
config = { version = "0.14", default-features = false, features = ["yaml"] } # TODO check to see why this can't be upgraded to v15
deadpool-amqprs = "0.3"
futures = "0.3"
rumqttc = "0.24.0"
secrecy = { version = "0.10", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde-aux = "4"
serde_json = { version = "1", features = ["raw_value"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3.20", features = ["registry", "env-filter"] }
uuid = { version = "1", features = ["v4"] }
[workspace.package]
version = "0.1.0"
publish = false
rust-version = "1.84.0"