mirror of
https://github.com/edu4rdshl/unimap.git
synced 2026-07-17 23:24:49 +00:00
Fix #7 - now we depend on the Findomain's trust-dns crate.
Bump dependencies. Signed-off-by: Edu4rdSHL <edu4rdshl@protonmail.com>
This commit is contained in:
parent
a41b1807cb
commit
c646e9c5d9
2 changed files with 200 additions and 200 deletions
26
Cargo.toml
26
Cargo.toml
|
|
@ -12,29 +12,33 @@ readme = "README.md"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
trust-dns-resolver = { git = "https://github.com/Edu4rdSHL/trust-dns", branch = "main" }
|
||||
rayon = "1.5.0"
|
||||
trust-dns-resolver = "0.20.4"
|
||||
rayon = "1.5.1"
|
||||
log = { version = "0.4.14", features = ["std"] }
|
||||
colored = { version = "2.0.0", optional = true }
|
||||
rand = "0.8.3"
|
||||
rand = "0.8.5"
|
||||
lazy_static = "1.4.0"
|
||||
serde = { version = "1.0.126", features = ["derive"] }
|
||||
serde_derive = "1.0.126"
|
||||
serde = { version = "1.0.136", features = ["derive"] }
|
||||
serde_derive = "1.0.136"
|
||||
prettytable-rs = "0.8.0"
|
||||
serde-xml-rs = "0.4.1"
|
||||
serde-xml-rs = "0.5.1"
|
||||
chrono = "0.4.19"
|
||||
clap = { version = "2.33.3", features = ["yaml"] }
|
||||
clap = { version = "2.34.0", features = ["yaml"] }
|
||||
config = { version = "0.11.0", features = ["yaml", "json", "toml", "hjson", "ini"] }
|
||||
failure = "0.1.8"
|
||||
|
||||
# https://github.com/bluejekyll/trust-dns/pull/1632
|
||||
[patch.crates-io]
|
||||
trust-dns-resolver = { git = "https://github.com/Findomain/trust-dns", package = "trust-dns-resolver", branch = "custombranch" }
|
||||
|
||||
[target.arm-unknown-linux-gnueabihf.dependencies]
|
||||
openssl = { version = "0.10.34", features = ["vendored"] }
|
||||
openssl = { version = "0.10.38", features = ["vendored"] }
|
||||
|
||||
[target.aarch64-unknown-linux-gnu.dependencies]
|
||||
openssl = { version = "0.10.34", features = ["vendored"] }
|
||||
openssl = { version = "0.10.38", features = ["vendored"] }
|
||||
|
||||
[target.armv7-unknown-linux-gnueabihf.dependencies]
|
||||
openssl = { version = "0.10.34", features = ["vendored"] }
|
||||
openssl = { version = "0.10.38", features = ["vendored"] }
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
atty = "0.2.14"
|
||||
|
|
@ -46,4 +50,4 @@ lto = true
|
|||
codegen-units = 1
|
||||
panic = 'abort'
|
||||
incremental = false
|
||||
opt-level = "s"
|
||||
opt-level = "s"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue