Skip to content

Commit

Permalink
Take dnsdetox dependency from workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
kiron1 committed Nov 25, 2023
1 parent 51a520a commit f0abe61
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 25 deletions.
16 changes: 7 additions & 9 deletions Cargo.Bazel.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"checksum": "2835bcc443622c12bf46dd57459e6855fc0b52858e3099b867b47a647f1db5eb",
"checksum": "34c75f8acaab0e600c70bdeab4ee59ca5089d9a85868c57c51a8ec70c39b45d3",
"crates": {
"addr2line 0.21.0": {
"name": "addr2line",
Expand Down Expand Up @@ -29,7 +29,7 @@
"deps": {
"common": [
{
"id": "gimli 0.28.0",
"id": "gimli 0.28.1",
"target": "gimli"
}
],
Expand Down Expand Up @@ -2039,7 +2039,6 @@
"color",
"default",
"derive",
"env",
"error-context",
"help",
"std",
Expand Down Expand Up @@ -2099,7 +2098,6 @@
"crate_features": {
"common": [
"color",
"env",
"error-context",
"help",
"std",
Expand Down Expand Up @@ -3648,13 +3646,13 @@
},
"license": "MIT OR Apache-2.0"
},
"gimli 0.28.0": {
"gimli 0.28.1": {
"name": "gimli",
"version": "0.28.0",
"version": "0.28.1",
"repository": {
"Http": {
"url": "https://crates.io/api/v1/crates/gimli/0.28.0/download",
"sha256": "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
"url": "https://crates.io/api/v1/crates/gimli/0.28.1/download",
"sha256": "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
}
},
"targets": [
Expand All @@ -3674,7 +3672,7 @@
"**"
],
"edition": "2018",
"version": "0.28.0"
"version": "0.28.1"
},
"license": "MIT OR Apache-2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ boa_engine = { version = "0.17", features = ["annex-b"] }
boa_gc = "0.17"
bytes = "1.1"
chrono = "0.4"
clap = { version = "4.1", features = ["derive"] }
clap = { version = "4.1", features = ["derive", "env"] }
default-net = { version = "0.17" }
detox_net = { path = "detox_net" }
dirs = "5.0"
Expand Down
26 changes: 13 additions & 13 deletions dnsdetox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.1", features = ["env"] }
dirs = "5.0"
clap.workspace = true
dirs.workspace = true
dns-parser = "0.8"
env_logger = "0.10"
futures-util = { version = "0.3", default-features = false }
http = "0.2"
hyper = { version = "0.14", features = ["http1", "http2", "client", "stream", "tcp"] }
hyper-rustls = "0.24"
futures-util.workspace = true
http.workspace = true
hyper.workspace = true
hyper-rustls.workspace = true
log = "0.4"
paclib = { path = "../paclib" }
proxy_client = { path = "../proxy_client" }
rustls = "0.21"
rustls-native-certs = "0.6"
thiserror = "1.0"
tokio = { version = "1", features = ["rt-multi-thread", "net", "macros", "sync", "signal"] }
tokio-rustls = "0.24"
paclib.workspace = true
proxy_client.workspace = true
rustls.workspace = true
rustls-native-certs.workspace = true
thiserror.workspace = true
tokio.workspace = true
tokio-rustls.workspace = true

[lib]
doctest = false

0 comments on commit f0abe61

Please sign in to comment.