Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 39 additions & 2 deletions Cargo.lock

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

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

[dependencies]
clap = { version = "4", features = ["derive"] }
domain = "0.10.1"
lexopt = "0.3.0"
arbitrary = { version = "1", optional = true, features = ["derive"] }
clap = { version = "4", features = ["derive"] }
domain = { git = "https://github.com/NLnetLabs/domain", branch = "add-some-arbitrary-derives-for-fuzzing-support" }
lexopt = "0.3.0"

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

[features]
arbitrary = [ "dep:arbitrary", "domain/arbitrary" ]
4 changes: 4 additions & 0 deletions fuzz/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
target
corpus
artifacts
coverage
Loading