-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
61 lines (51 loc) · 1.32 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
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "ntex-h2"
version = "1.5.0"
license = "MIT OR Apache-2.0"
authors = ["Nikolay Kim <[email protected]>"]
description = "An HTTP/2 client and server"
documentation = "https://docs.rs/ntex-h2"
repository = "https://github.com/ntex-rs/ntex-h2"
readme = "README.md"
keywords = ["http", "async", "non-blocking"]
categories = ["asynchronous", "web-programming", "network-programming"]
exclude = ["fixtures/**", "util/**", "fuzz/**"]
edition = "2021"
rust-version = "1.75"
[features]
default = []
# unstable features
unstable = []
[package.metadata.docs.rs]
features = ["ntex-net/tokio"]
[dependencies]
ntex-net = "2"
ntex-io = "2.9"
ntex-http = "0.1"
ntex-bytes = "0.1"
ntex-codec = "0.6"
ntex-service = "3.4"
ntex-util = "2.8"
ntex-rt = "0.4"
bitflags = "2"
fxhash = "0.2"
log = "0.4"
pin-project-lite = "0.2"
thiserror = "1"
nanorand = { version = "0.7", default-features = false, features = ["std", "wyrand"] }
[dev-dependencies]
# Fuzzing
quickcheck = { version = "1.0.3", default-features = false }
rand = "0.8.4"
# HPACK fixtures
hex = "0.4.3"
walkdir = "2.3.2"
serde = "1.0"
serde_json = "1.0"
ntex = { version = "2", features = ["openssl"] }
ntex-tls = { version = "2", features = ["openssl"] }
openssl = "0.10"
# Examples
env_logger = { version = "0.11", default-features = false }
[patch.crates-io]
ntex-h2 = { path = "." }