-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
34 lines (31 loc) · 1.1 KB
/
Cargo.toml
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
[package]
name = "dnsi"
version = "0.2.0"
edition = "2021"
rust-version = "1.78.0"
authors = ["NLnet Labs <[email protected]>"]
description = "A tool for investigating the DNS."
repository = "https://github.com/nlnetlabs/dnsi/"
categories = ["command-line-utilities"]
readme = "README.md"
keywords = ["DNS", "domain"]
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" ] }
domain = { version = "0.10", features = ["resolv", "unstable-client-transport"]}
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" },
]