-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (42 loc) · 986 Bytes
/
Cargo.toml
File metadata and controls
53 lines (42 loc) · 986 Bytes
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
[package]
name = "resolver"
version = "0.1.0"
authors = ["luozijun <luozijun.assistant@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
env_logger = { version = "0.7", default-features = false, features = ["termcolor", "atty", "humantime"] }
rand = "0.7"
tokio = "0.2"
native-tls = "0.2"
tokio-tls = "0.3"
h2 = "0.2"
http = "0.2"
bytes = "0.5"
wire = { path = "./wire" }
base64 = "0.11"
clap = "2.33"
# Resolver
# openssl = { version = "0.10", optional = false }
# lazy_static = "1.4"
# resolv-conf = "0.6"
[dev-dependencies]
[features]
default = [
"tokio/tcp",
"tokio/udp",
"tokio/time",
"tokio/full",
]
nightly = [ "clap/nightly", ]
# vendored = [ "openssl/vendored" ]
[[bin]]
name = "named"
path = "./bin/named.rs"
[[bin]]
name = "h2client"
path = "./bin/h2client.rs"
[[bin]]
name = "h2server"
path = "./bin/h2server.rs"