Backed out changeset 5669c20b0617 (bug 1903669) for causing crashtest failures on...
[gecko.git] / netwerk / socket / neqo_glue / Cargo.toml
blob75fde08323a1bcf49ed892c5e4fc59218c1b71a2
1 [package]
2 name = "neqo_glue"
3 version = "0.1.0"
4 authors = ["Dragana Damjanovic <dd.mozilla@gmail.com>"]
5 edition = "2018"
6 license = "MPL-2.0"
8 [lib]
9 name = "neqo_glue"
11 [dependencies]
12 neqo-http3 = { tag = "v0.7.9", git = "https://github.com/mozilla/neqo" }
13 neqo-transport = { tag = "v0.7.9", git = "https://github.com/mozilla/neqo" }
14 neqo-common = { tag = "v0.7.9", git = "https://github.com/mozilla/neqo" }
15 neqo-qpack = { tag = "v0.7.9", git = "https://github.com/mozilla/neqo" }
16 nserror = { path = "../../../xpcom/rust/nserror" }
17 nsstring = { path = "../../../xpcom/rust/nsstring" }
18 xpcom = { path = "../../../xpcom/rust/xpcom" }
19 thin-vec = { version = "0.2.1", features = ["gecko-ffi"] }
20 log = "0.4.0"
21 qlog = "0.13"
22 libc = "0.2.0"
23 static_prefs = { path = "../../../modules/libpref/init/static_prefs"}
24 uuid = { version = "1.0", features = ["v4"] }
26 [target.'cfg(target_os = "windows")'.dependencies]
27 winapi = {version = "0.3", features = ["ws2def"] }
29 [dependencies.neqo-crypto]
30 tag = "v0.7.9"
31 git = "https://github.com/mozilla/neqo"
32 default-features = false
33 features = ["gecko"]
35 [features]
36 fuzzing = ["neqo-http3/disable-encryption"]