-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
42 lines (35 loc) · 1.04 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
[package]
name = "majsoul_max_rs"
version = "0.6.0"
edition = "2021"
rust-version = "1.80"
[lib]
[[bin]]
name = "majsoul_max_rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aws-lc-rs = { version = "1", features = ["bindgen"] }
anyhow = "1.0.93"
base64 = "0.22.1"
bytes = "1.7.2"
prost-reflect = { version = "0.14.2", features = ["serde"] }
reqwest = { version = "0.12.9", features = [
"json",
"rustls-tls",
], default-features = false }
serde_json = "1.0.132"
serde = { version = "1.0.214", features = ["derive"] }
tokio = { version = "1.41.1", features = ["rt-multi-thread", "fs"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "chrono"] }
tracing = "0.1.40"
clap = { version = "4.5.20", features = ["derive"] }
prost = "0.13.3"
hudsucker = "0.23.0"
const_format = "0.2.33"
[build-dependencies]
prost-build = "0.13.3"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "clone_static_vs_construct"
harness = false