diff options
Diffstat (limited to 'third_party/rust/neqo-http3/Cargo.toml')
-rw-r--r-- | third_party/rust/neqo-http3/Cargo.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/third_party/rust/neqo-http3/Cargo.toml b/third_party/rust/neqo-http3/Cargo.toml new file mode 100644 index 0000000000..3aed2c0b16 --- /dev/null +++ b/third_party/rust/neqo-http3/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "neqo-http3" +version = "0.4.19" +authors = ["Dragana Damjanovic <dragana.damjano@gmail.com>"] +edition = "2018" +license = "MIT/Apache-2.0" + +[dependencies] +neqo-common = { path = "./../neqo-common" } +neqo-crypto = { path = "./../neqo-crypto" } +neqo-transport = { path = "./../neqo-transport" } +neqo-qpack = { path = "./../neqo-qpack" } +log = {version = "0.4.0", default-features = false} +smallvec = "1.0.0" +qlog = "0.4.0" + +[dev-dependencies] +test-fixture = { path = "../test-fixture" } + +[features] +default = ["deny-warnings"] +deny-warnings = [] |