forked from hickory-dns/hickory-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (56 loc) · 2.27 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (56 loc) · 2.27 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
64
65
66
67
68
[package]
name = "trust-dns-util"
version = "0.20.1"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"
# A short blurb about the package. This is not rendered in any format when
# uploaded to crates.io (aka this is not markdown)
description = """
Utilities that complement Trust-DNS.
"""
# These URLs point to more information about the repository
documentation = "https://docs.rs/crate/trust-dns-util"
homepage = "http://www.trust-dns.org/index.html"
repository = "https://github.com/bluejekyll/trust-dns"
# This points to a file in the repository (relative to this Cargo.toml). The
# contents of this file are stored and indexed in the registry.
readme = "README.md"
# This is a small list of keywords used to categorize and search for this
# package.
keywords = ["DNS", "BIND", "dig", "named", "dnssec"]
categories = ["network-programming"]
# This is a string description of the license for this package. Currently
# crates.io will validate the license provided against a whitelist of known
# license identifiers from http://spdx.org/licenses/. Multiple licenses can
# be separated with a `/`
license = "MIT/Apache-2.0"
[badges]
#github-actions = { repository = "bluejekyll/trust-dns", branch = "main", workflow = "test" }
codecov = { repository = "bluejekyll/trust-dns", branch = "main", service = "github" }
maintenance = { status = "actively-developed" }
[features]
dns-over-rustls = ["trust-dns-resolver/dns-over-rustls"]
[[bin]]
name = "dnskey-to-pem"
path = "src/bind_dnskey_to_pem.rs"
[[bin]]
name = "get-root-ksks"
path = "src/get_root_ksks.rs"
[[bin]]
name = "pem-to-public-dnskey"
path = "src/pem_to_public_dnskey.rs"
[[bin]]
name = "resolve"
path = "src/resolve.rs"
[dependencies]
clap = "2.33.1"
console = "0.14.0"
data-encoding = "2.2.0"
env_logger = { version = "0.8.1", features = ["termcolor", "humantime", "atty"] }
trust-dns-client= { version = "0.20.1", features = ["dnssec-openssl"], path = "../crates/client" }
trust-dns-proto = { version = "0.20.1", features = ["dnssec-openssl"], path = "../crates/proto" }
trust-dns-resolver = { version = "0.20.1", features = ["dnssec-openssl"], path = "../crates/resolver" }
log = "0.4"
openssl = { version = "0.10", features = ["v102", "v110"] }
structopt = "0.3"
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] }