-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (41 loc) · 1.21 KB
/
Cargo.toml
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
[package]
name = "ucentral-cgw"
version = "0.0.1"
edition = "2021"
[dependencies]
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"
env_logger = "0.11.3"
log = "0.4.20"
tokio = { version = "1.34.0", features = ["full"] }
tokio-stream = { version = "0.1.15", features = ["full"] }
tokio-tungstenite = { version = "0.23.0" }
tokio-rustls = "0.26.0"
tokio-postgres = { version = "0.7.10", features = ["with-eui48-1"]}
tokio-pg-mapper = "0.2.0"
tungstenite = { version = "0.23.0"}
futures-util = { version = "0.3.0", default-features = false }
futures-channel = "0.3.0"
futures-executor = { version = "0.3.0", optional = true }
futures = "0.3.0"
rlimit = "0.10.1"
tonic = "0.11.0"
prost = "0.12"
rdkafka = "0.36.2"
eui48 = { version = "1.1.0", features = ["serde"]}
uuid = { version = "1.6.1", features = ["serde"] }
redis-async = "0.17.2"
warp = "0.3.7"
prometheus = { version = "0.13.4", features = ["process"] }
lazy_static = "1.4.0"
petgraph = { version = "0.6.4", features = ["stable_graph"] }
flate2 = "1.0.28"
base64 = "0.22.0"
rustls-pemfile = "2.1.2"
rustls-pki-types = "1.7.0"
x509-parser = "0.16.0"
chrono = "0.4.38"
derive_more = "0.99.17"
[build-dependencies]
tonic-build = "0.11.0"
prost-build = "0.12.0"