-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (35 loc) · 866 Bytes
/
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
[package]
name = "metacall_ssr_benchmark"
version = "0.1.0"
edition = "2021"
[dependencies]
warp = { version = "0.3.7", default-features = false }
metacall = { version = "0.4.0", default-features = false }
http-body-util = { version = "0.1.1", default-features = false }
tracing-subscriber = { version = "0.3.18", default-features = false }
actix-web = { version = "4.5.1", default-features = false, features = [
"macros",
] }
axum = { version = "0.7.5", default-features = false, features = [
"http1",
"tokio",
] }
tokio = { version = "1.37.0", default-features = false, features = [
"rt",
"rt-multi-thread",
"macros",
] }
[[bin]]
name = "actix"
path = "src/actix.rs"
[[bin]]
name = "axum"
path = "src/axum.rs"
[[bin]]
name = "warp"
path = "src/warp.rs"
[profile.release]
lto = "fat"
opt-level = 3
codegen-units = 1
incremental = false