-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
65 lines (60 loc) · 1.89 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "dqy"
edition = "2021"
version = "0.5.2" #:version
authors = ["Alain Viguier <dandyvica@gmail.com>"]
description = """
dqy is a DNS query tool inspired by dig, drill and dog.
"""
documentation = "https://github.com/dandyvica/dqy"
homepage = "https://github.com/dandyvica/dqy"
repository = "https://github.com/dandyvica/dqy"
keywords = ["dns"]
categories = ["command-line-utilities"]
license = "MIT"
rust-version = "1.82.0"
[dependencies]
base16 = "0.2.1"
base64 = "0.21.5"
byteorder = "1.5.0"
bytes = "1.9.0"
chrono = "0.4.38"
clap = { version = "4.5.26", features = ["cargo"] }
colored = "2.2.0"
enum_from = { git = "https://github.com/dandyvica/enum_from.git" }
handlebars = "6.3.0"
http = "1.0.0"
idna = "1.0.3"
lazy_static = "1.4.0"
log = "0.4.22"
mlua = { version = "0.9.4", features = [ "lua54", "serialize" ], optional = true }
quinn = "0.11.6"
rand = "0.8.5"
rcgen = "0.13.1"
regex = "1.11.1"
reqwest = { version = "0.12.12", default-features = false, features = ["rustls-tls-webpki-roots", "blocking", "http2"] }
resolving = { git = "https://github.com/dandyvica/resolving" }
rustc_version_runtime = "0.3.0"
rustls = { version = "0.23.20", default-features = false, features = ["std", "tls12", "ring"] }
rustls-pki-types = "1.10.1"
serde = { version = "1.0.195", features = [ "derive" ] }
serde_json = { version = "1.0.111", features = ["preserve_order"] }
simplelog = "0.12.2"
# tera = "1.20.0"
thiserror = "1.0.65"
tokio = { version = "1", features = ["full"] }
tokio-macros = { version = "0.2.0-alpha.6" }
type2network = { git = "https://github.com/dandyvica/type2network" }
type2network_derive = { git = "https://github.com/dandyvica/type2network/" }
unicode-width = "0.2.0"
webpki-roots = "0.26.0"
[dev-dependencies]
pcap-file = "2.0.0"
[profile.release]
strip = "debuginfo"
[lints.clippy]
upper_case_acronyms = "allow"
unnecessary_cast = "allow"
[[bin]]
name = "certgen"
path = "src/certgen.rs"