Skip to content

Commit

Permalink
Implement Key2ds (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
tertsdiepraam authored Nov 19, 2024
1 parent a014f13 commit 511c8f1
Show file tree
Hide file tree
Showing 9 changed files with 647 additions and 13 deletions.
97 changes: 88 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,16 @@ path = "src/bin/ldns.rs"

[dependencies]
clap = { version = "4.3.4", features = ["derive"] }
domain = "0.10.1"
domain = { version = "0.10.3", git = "https://github.com/NLnetLabs/domain.git", features = [
"zonefile",
"bytes",
"unstable-validate",
] }
lexopt = "0.3.0"

# for implementation of nsec3 hash until domain has it stabilized
octseq = { version = "0.5.1", features = ["std"] }
octseq = { version = "0.5.2", features = ["std"] }
ring = { version = "0.17" }

[dev-dependencies]
tempfile = "3.14.0"
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use super::error::Error;
#[command(version, disable_help_subcommand = true)]
pub struct Args {
#[command(subcommand)]
command: Command,
pub command: Command,
}

impl Args {
Expand Down
Loading

0 comments on commit 511c8f1

Please sign in to comment.