-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (45 loc) · 1.11 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
[package]
name = "lz_quic"
version = "0.1.0"
authors = ["Luke Horsley <[email protected]>"]
build = "build.rs"
[dependencies]
binary-tree = "0.2.0"
bitflags = "0.8.2"
byteorder = { version = "1.0.0", features = ["i128"] }
bytes = "0.4.8"
chrono = "0.3.0"
conv = "0.3.3"
debugit = "0.1.2"
error-chain = "0.10.0"
flate2 = { git = "https://github.com/alexcrichton/flate2-rs", features = ["zlib"] }
futures = "0.1.18"
hex = "0.2.0"
itertools = "0.6.0"
lazy_static = "0.2.6"
log = "0.3.8"
lz_diet = "0.1.3"
lz_fnv = { version = "0.1.1", features = ["u128"] }
lz_shared_udp = "0.1.2"
maplit = "1.0.1"
matches = "0.1.6"
num = "0.1.37"
rand = "0.3.15"
ring = { version = "0.13.0-alpha", features = ["rsa_signing"] }
rustls = { git = "https://github.com/ctz/rustls", features = ["quic"] }
smallvec = "0.6.1"
time = "0.1.37"
tokio-core = "0.1.6"
tokio-io = "0.1.1"
tokio-rustls = "0.5.0"
untrusted = "0.6.1"
webpki = "0.18.0-alpha"
[dev-dependencies]
env_logger = "0.5.10"
webpki-roots = "0.14.0"
[build-dependencies]
vergen = "0.1.1"
[patch.crates-io]
rustls = { git = "https://github.com/ctz/rustls" }
[features]
unstable = []