-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 781 Bytes
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
[package]
name = "st-rust"
version = "0.1.0"
authors = ["Antoine Busch <antoine.busch@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.17", features = ["full"] }
anyhow = "1.0"
bytes = "1.0"
byteorder = "1.4"
parking_lot = "0.12"
prost = "0.10"
ring = "0.16"
data-encoding = "2.3"
pem = "1.0"
fastrand = "1.7"
rustls = {version="0.20", features=["logging", "dangerous_configuration"]}
rustls-pemfile = "0.3"
tokio-rustls = "0.23"
tracing = "0.1"
tracing-subscriber = "0.3"
url = "2.2"
thiserror = "1"
tracing-futures = "0.2"
serde = { version="1.0", features=["derive"] }
toml = "0.5"
directories = "4"
lz4_flex = "0.9"
[build-dependencies]
prost-build = "0.10"