-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
44 lines (34 loc) · 1.02 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
[package]
name = "iana"
version = "0.1.0"
authors = ["luozijun <[email protected]>"]
edition = "2018"
exclude = [
"data/",
]
[[bin]]
name = "sync"
path = "src/bin/sync.rs"
required-features = ["sync"]
[[bin]]
name = "parse"
path = "src/bin/parse.rs"
required-features = ["parse"]
[[bin]]
name = "lookup"
path = "src/bin/lookup.rs"
required-features = [ ]
[dependencies]
log = "0.4"
env_logger = { version = "0.6", default-features = false, features = [ "termcolor", "atty", "humantime" ] }
clap = { version = "2.33", optional = true }
futures = { version = "0.1", optional = true }
tokio-core = { version = "0.1", optional = true }
hyper = { version = "0.11", optional = true }
hyper-tls = { version = "0.1", optional = true }
smoltcp = { version = "0.5", optional = true, default-features = false, features = [ "std", "log", "proto-ipv4", "proto-ipv6" ] }
[dev-dependencies]
[features]
default = [ ]
sync = [ "clap", "smoltcp", "futures", "tokio-core", "hyper", "hyper-tls" ]
parse = [ "clap", "smoltcp" ]