-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (61 loc) · 1.86 KB
/
Cargo.toml
File metadata and controls
65 lines (61 loc) · 1.86 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.88.0"
repository = "https://github.com/pashinov/nexus"
license = "MIT OR Apache-2.0"
[workspace]
resolver = "2"
members = [
"gateway",
"kafka-producer",
"mqtt-client",
"tunnel-client",
"tunnel-server",
"utils"
]
[workspace.dependencies]
# crates.io deps
anyhow = "1.0.79"
base64 = "0.22"
axum = { version = "0.8", features = ["ws"] }
bytes = { version = "1", features = ["serde"] }
dashmap = "6"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5.3", features = ["derive"] }
futures-util = "0.3"
http = "1"
http-body-util = "0.1"
jsonwebtoken = { version = "10.3", features = ["rust_crypto"] }
libc = "0.2"
redis = { version = "1.0", features = ["tokio-comp", "connection-manager"] }
reqwest = { version = "0.13", features = ["json", "form", "stream"] }
native-tls = "0.2"
redb = "3"
rumqttc = { version = "0.25.1", features = ["use-native-tls"] }
rustc_version = "0.4.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.114"
serde_path_to_error = "0.1"
sysinfo = "0.33"
humantime-serde = "1"
sqlx = { version = "0.8.2", features = ["runtime-tokio-native-tls", "postgres", "uuid", "bigdecimal", "chrono", "json"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "timeout", "normalize-path"] }
tokio = { version = "1", default-features = false }
tokio-stream = "0.1"
tokio-tungstenite = { version = "0.28", features = ["native-tls"] }
tokio-util = "0.7"
tracing = "0.1"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-stackdriver = "0.10.0"
url = "2"
uuid = { version = "1", features = ["v4", "serde"] }
zeroize = { version = "1", features = ["derive"] }
# local deps
nexus-utils = { path = "./utils", version = "0.1.0" }
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1