forked from NLnetLabs/domain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
86 lines (72 loc) · 2.7 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
name = "domain"
version = "0.8.0-dev"
rust-version = "1.65.0"
edition = "2021"
authors = ["Martin Hoffmann <[email protected]>"]
description = "A DNS library for Rust."
documentation = "https://docs.rs/domain"
homepage = "https://github.com/nlnetlabs/domain/"
repository = "https://github.com/nlnetlabs/domain/"
readme = "README.md"
keywords = ["DNS", "domain"]
license = "BSD-3-Clause"
[lib]
name = "domain"
path = "src/lib.rs"
[dependencies]
time = "0.3.1"
rand = { version = "0.8", optional = true }
bytes = { version = "1.0", optional = true }
chrono = { version = "0.4.6", optional = true, default-features = false }
futures = { version = "0.3", optional = true }
heapless = { version = "0.7", optional = true }
octseq = { git = "https://github.com/NLnetLabs/octseq.git" }
#openssl = { version = "0.10", optional = true }
ring = { version = "0.16.14", optional = true }
serde = { version = "1.0.130", optional = true, features = ["derive"] }
smallvec = { version = "1", optional = true }
tokio = { version = "1.0", optional = true, features = ["io-util", "macros", "net", "time"] }
[target.'cfg(macos)'.dependencies]
# specifying this overrides minimum-version mio's 0.2.69 libc dependency, which allows the build to work
libc = { version = "0.2.71", default-features = false, optional = true }
[features]
default = ["std", "random"]
bytes = ["dep:bytes", "octseq/bytes"]
heapless = ["dep:heapless", "octseq/heapless"]
interop = ["bytes", "ring"]
random = ["rand"]
resolv = ["bytes", "futures", "smallvec", "std", "tokio", "libc", "random"]
resolv-sync = ["resolv", "tokio/rt"]
serde = ["dep:serde", "octseq/serde"]
sign = ["std"]
smallvec = ["dep:smallvec", "octseq/smallvec"]
std = []
tsig = ["bytes", "ring", "smallvec"]
validate = ["std", "ring"]
zonefile = ["bytes", "std"]
# This feature should include all features that the CI should include for a
# test run. Which is everything except interop.
ci-test = ["resolv", "resolv-sync", "sign", "std", "serde", "tsig", "validate", "zonefile"]
[dev-dependencies]
serde_test = "1.0.130"
serde_yaml = "0.9"
tokio = { version = "1", features = ["rt-multi-thread", "io-util", "net"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[example]]
name = "readzone"
required-features = ["zonefile"]
[[example]]
name = "download-rust-lang"
required-features = ["resolv"]
[[example]]
name = "lookup"
required-features = ["resolv"]
[[example]]
name = "resolv-sync"
required-features = ["resolv-sync"]
[[example]]
name = "client"
required-features = ["std", "rand"]