-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
41 lines (39 loc) · 1.02 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
[package]
name = "zumble"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-rt = "2.7.0"
actix-server = "2.1.1"
actix-service = "2.0.2"
actix-tls = { version= "3.0.3", features = ["rustls"] }
actix-web = { version = "4.1.0", features = ["rustls"] }
actix-web-codegen = "4.0.1"
actix-web-httpauth = "0.8.0"
aes = "0.8.1"
anyhow = "1.0.68"
async-trait = "0.1.57"
block-modes = "0.9.1"
bytes = "1.2.1"
byteorder = "1.4.3"
clap = { version = "3.2.20", features = ["derive"] }
futures = "0.3.24"
futures-util = "0.3.24"
lazy_static = "1.4.0"
protobuf = "2.27.1"
ring = "0.16.20"
rustls = { version = "0.20.6", features = ["tls12"] }
rustls-pemfile = "1.0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.85"
thiserror = "1.0.38"
tokio = { version = "1.21.0", features = ["full", "tracing"] }
tokio-byteorder = "0.3.0"
tokio-rustls = "0.23.4"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
prometheus = { version = "0.13.3", features = ["process"] }
[profile.release]
codegen-units = 1
lto = true
panic = "abort"