Skip to content

Commit 511c8f1

Browse files
Implement Key2ds (#2)
1 parent a014f13 commit 511c8f1

File tree

9 files changed

+647
-13
lines changed

9 files changed

+647
-13
lines changed

Cargo.lock

Lines changed: 88 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,16 @@ path = "src/bin/ldns.rs"
1010

1111
[dependencies]
1212
clap = { version = "4.3.4", features = ["derive"] }
13-
domain = "0.10.1"
13+
domain = { version = "0.10.3", git = "https://github.com/NLnetLabs/domain.git", features = [
14+
"zonefile",
15+
"bytes",
16+
"unstable-validate",
17+
] }
1418
lexopt = "0.3.0"
1519

1620
# for implementation of nsec3 hash until domain has it stabilized
17-
octseq = { version = "0.5.1", features = ["std"] }
21+
octseq = { version = "0.5.2", features = ["std"] }
1822
ring = { version = "0.17" }
23+
24+
[dev-dependencies]
25+
tempfile = "3.14.0"

src/args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use super::error::Error;
77
#[command(version, disable_help_subcommand = true)]
88
pub struct Args {
99
#[command(subcommand)]
10-
command: Command,
10+
pub command: Command,
1111
}
1212

1313
impl Args {

0 commit comments

Comments
 (0)