-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 872 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (30 loc) · 872 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 = "stoke"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
hyper = { version = "1", default-features = false, features = ["http1", "http2", "server"] }
http = "1"
bytes = "1"
hyper-util = { version = "0.1", default-features = false, features = ["server-auto", "server-graceful", "tokio"] }
tokio = { version = "1", default-features = false, features = ["rt", "net", "signal", "time", "macros"] }
tokio-rustls = { version = "0.26", default-features = false, features = ["ring", "tls12"] }
rustls-pemfile = "2"
http-body-util = "0.1"
socket2 = { version = "0.5", features = ["all"] }
libc = "0.2"
[build-dependencies]
bindgen = "0.72"
cc = "1"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
debug = false
[profile.bench-safe]
inherits = "release"
overflow-checks = true
debug-assertions = true