-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (53 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
63 lines (53 loc) · 1.33 KB
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
62
63
[package]
name = "ntex-h2"
version = "3.8.1"
license = "MIT OR Apache-2.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
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 = "2024"
rust-version = "1.88"
[features]
default = []
# unstable features
unstable = []
[package.metadata.docs.rs]
features = []
[dependencies]
ntex-bytes = "1.5"
ntex-codec = "1.1"
ntex-dispatcher = "3"
ntex-http = "1"
ntex-io = "3.9"
ntex-net = "3.8"
ntex-service = "4.6"
ntex-util = "3"
ntex-server = "3.9"
ntex-error = "1.0"
bitflags = "2"
foldhash = "0.2"
log = "0.4"
pin-project-lite = "0.2"
thiserror = "2"
nanorand = { version = "0.8", default-features = false, features = ["std", "wyrand", "entropy", "tls"] }
[dev-dependencies]
# Fuzzing
quickcheck = { version = "1.0.3", default-features = false }
rand = "0.9"
# HPACK fixtures
hex = "0.4.3"
walkdir = "2.3.2"
serde = "1"
serde_json = "1"
ntex = { version = "3.6", features = ["openssl"] }
ntex-tls = { version = "3.4", features = ["openssl"] }
openssl = "0.10"
# Examples
env_logger = "0.11"
[patch.crates-io]
ntex-h2 = { path = "." }