-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into json-output
- Loading branch information
Showing
25 changed files
with
1,004 additions
and
278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Packaging | ||
|
||
on: | ||
# Since this workflow is quite costly, we only run it automatically on | ||
# release tags. Otherwise trigger it manually. | ||
push: | ||
tags: | ||
- v* | ||
|
||
# Allow manually triggering the workflow. | ||
workflow_dispatch: | ||
|
||
jobs: | ||
package: | ||
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7 | ||
with: | ||
package_build_rules: pkg/rules/packages-to-build.yml | ||
package_test_scripts_path: pkg/test-scripts/test-<package>.sh |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dnsi" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2021" | ||
rust-version = "1.78.0" | ||
authors = ["NLnet Labs <[email protected]>"] | ||
|
@@ -13,11 +13,24 @@ license = "BSD-3-Clause" | |
exclude = [ ".github", ".gitignore" ] | ||
|
||
[dependencies] | ||
bytes = "1" | ||
clap = { version = "4", features = ["derive", "unstable-doc"] } | ||
chrono = { version = "0.4.38", features = [ "alloc", "clock", "serde" ] } | ||
domain = { version = "0.10.0", features = ["resolv", "unstable-client-transport", "serde"] } | ||
tempfile = "3.1.0" | ||
tokio = { version = "1.33", features = ["rt-multi-thread"] } | ||
serde_json = { version = "1.0.117", features = ["preserve_order"] } | ||
serde = "1.0.202" | ||
bytes = "1" | ||
chrono = { version = "0.4.38", features = [ "alloc", "clock", "serde" ] } | ||
clap = { version = "4", features = ["derive", "unstable-doc"] } | ||
domain = { version = "0.10", features = ["resolv", "unstable-client-transport", "serde"]} | ||
serde = { version = "1.0.202", features = ["derive"] } | ||
serde_json = { version = "1.0.117", features = ["preserve_order"] } | ||
tempfile = "3.1.0" | ||
tokio = { version = "1.33", features = ["rt-multi-thread"] } | ||
tokio-rustls = { version = "0.26.0", default-features = false, features = [ "ring", "logging", "tls12" ] } | ||
webpki-roots = "0.26.3" | ||
|
||
[package.metadata.deb] | ||
extended-description = """\ | ||
The dnsi utility is a command line tool for investigating various \ | ||
aspects of the DNS.""" | ||
|
||
[package.metadata.generate-rpm] | ||
license = "BSD" | ||
assets = [ | ||
{ source = "target/release/dnsi", dest = "/usr/bin/dnsi", mode = "755" }, | ||
] |
Oops, something went wrong.