-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
84 lines (73 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "rust-framework-benchmarks"
version = "0.1.0"
edition = "2021"
authors = ["Ishtmeet Singh <ishtmeet@rigelnext.com>"]
repository = "https://github.com/ishtmeet-singh/rust-framework-benchmarks"
[[bin]]
name = "main"
path = "src/main.rs"
[[bin]]
name = "actix"
path = "src/bin/actix.rs"
[[bin]]
name = "axum"
path = "src/bin/axum.rs"
[[bin]]
name = "hyper"
path = "src/bin/hyper.rs"
[[bin]]
name = "ntex"
path = "src/bin/ntex.rs"
[[bin]]
name = "tide"
path = "src/bin/tide.rs"
[[bin]]
name = "warp"
path = "src/bin/warp.rs"
[[bin]]
name = "rocket"
path = "src/bin/rocket.rs"
[[bin]]
name = "viz"
path = "src/bin/viz.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
warp = "0.3.3"
axum = "0.6.18"
hyper = "0.14.27"
ntex = { version = "0.7.2", features = ["tokio"] }
actix-web = "4"
tide = "0.16.0"
async-std = { version = "1.8.0", features = ["attributes"] }
rocket = "0.5.0-rc.2"
viz = "0.4.10"
serde_json = "1.0"
serde = "1.0.140"
regex = "1.6.0"
lazy_static = "1.4.0"
num-format = "0.4.0"
astra = "0.2.0"
indicatif = "0.16.2"
colored = "2.0.0"
poem = "1.3.56"
salvo = "0.46.0"
thruster = "1.3.5"
may_minihttp = { git = "https://github.com/Xudong-Huang/may_minihttp.git" }
gotham = "0.7.1"
nickel = "0.11.0"
nickel_macros = "0.1.0"
roa = "0.6"
anyhow = "1.0.58"
futures = "0.1.11"
tokio-minihttp = { git = "https://github.com/tokio-rs/tokio-minihttp" }
tokio-proto = "0.1"
tokio-service = "0.1"
crossterm = "0.26.0"
chrono = "0.4.19"
[profile.release]
opt-level = 3
debug = false
lto = true
debug-assertions = false
codegen-units = 1