mirror of
https://github.com/NLnetLabs/domain.git
synced 2026-09-26 19:54:54 +02:00
87 lines
2.7 KiB
TOML
87 lines
2.7 KiB
TOML
[package]
|
|
name = "domain"
|
|
version = "0.9.0-dev"
|
|
rust-version = "1.65.0"
|
|
edition = "2021"
|
|
authors = ["NLnet Labs <dns-team@nlnetlabs.nl>"]
|
|
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]
|
|
octseq = { git = "https://github.com/NLnetLabs/octseq.git" }
|
|
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 }
|
|
#openssl = { version = "0.10", optional = true }
|
|
ring = { version = "0.16.14", optional = true }
|
|
serde = { version = "1.0.130", optional = true, features = ["derive"] }
|
|
siphasher = { version = "0.3.10", optional = true }
|
|
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", "rand"]
|
|
bytes = ["dep:bytes", "octseq/bytes"]
|
|
heapless = ["dep:heapless", "octseq/heapless"]
|
|
interop = ["bytes", "ring"]
|
|
resolv = ["bytes", "futures", "smallvec", "std", "tokio", "libc", "rand"]
|
|
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"]
|
|
|