-
Notifications
You must be signed in to change notification settings - Fork 978
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 963 Bytes
/
Cargo.toml
File metadata and controls
40 lines (33 loc) · 963 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
35
36
37
38
39
40
[package]
name = "quiche_apps"
version = "0.1.0"
authors = ["Lucas Pardue <lucaspardue.24.7@gmail.com>"]
edition = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
publish = false
[features]
# Enable quiche's fuzzing mode.
fuzzing = ["quiche/fuzzing"]
# Enable qlog support.
qlog = ["quiche/qlog"]
# Use BoringSSL provided by the boring crate.
boringssl-boring-crate = ["quiche/boringssl-boring-crate"]
# Enable sfv support.
sfv = ["quiche/sfv"]
default = ["qlog", "sfv"]
[dependencies]
docopt = "1"
env_logger = { workspace = true }
libc = { workspace = true }
log = { workspace = true }
mio = { workspace = true, features = ["net", "os-poll"] }
nix = { workspace = true, features = ["net", "socket", "uio"] }
octets = { workspace = true }
quiche = { workspace = true }
ring = { workspace = true }
url = { workspace = true }
[lib]
crate-type = ["lib"]