From c6d9217977f9b980d628d239f606bc3f8561944d Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 8 Sep 2023 10:21:17 -0700
Subject: [PATCH] build(deps): Bump url from 2.4.0 to 2.4.1 in /rust (#1982)
Bumps [url](https://github.com/servo/rust-url) from 2.4.0 to 2.4.1.
Commits
a08aa2c
Fix panic in set_path for file URLs (#865)
edabc79
Fix no_std for idna (#843)
1158370
Update WPT data and expectations (#859)
beb2cde
Stabilize debugger_visualizer feature (#855)
86730f1
Add --generate-link-to-definition option when building on
docs.rs (#858)
e4dbb43
Implement std::error::Error for InvalidBase64 (#856)
b33514a
Rewrite WPT runner (#857)
b228574
Enable the GitHub merge queue (#851)
3a474c3
Merge pull request #698
from lucacasonato/impl_error_for_data_url
1f7dbe0
Merge pull request #848
from lucacasonato/fix_trailing_space_pathname_setter
- Additional commits viewable in compare
view
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
rust/Cargo.lock | 4 ++--
rust/connlib/clients/headless/Cargo.toml | 2 +-
rust/connlib/gateway/Cargo.toml | 2 +-
rust/connlib/libs/common/Cargo.toml | 2 +-
rust/phoenix-channel/Cargo.toml | 2 +-
rust/relay/Cargo.toml | 2 +-
6 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index 0615d70bb..ad94c6452 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -4169,9 +4169,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
[[package]]
name = "url"
-version = "2.4.0"
+version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
+checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
dependencies = [
"form_urlencoded",
"idna",
diff --git a/rust/connlib/clients/headless/Cargo.toml b/rust/connlib/clients/headless/Cargo.toml
index 644a267b4..95300b3e6 100644
--- a/rust/connlib/clients/headless/Cargo.toml
+++ b/rust/connlib/clients/headless/Cargo.toml
@@ -9,7 +9,7 @@ edition = "2021"
dmidecode = "0.7"
firezone-client-connlib = { path = "../../libs/client" }
ip_network = "0.4"
-url = { version = "2.3.1", default-features = false }
+url = { version = "2.4.1", default-features = false }
tracing-subscriber = { version = "0.3" }
tracing = { version = "0.1" }
anyhow = { version = "1.0" }
diff --git a/rust/connlib/gateway/Cargo.toml b/rust/connlib/gateway/Cargo.toml
index 6347abc65..84382c953 100644
--- a/rust/connlib/gateway/Cargo.toml
+++ b/rust/connlib/gateway/Cargo.toml
@@ -8,7 +8,7 @@ edition = "2021"
[dependencies]
firezone-gateway-connlib = { path = "../libs/gateway" }
ip_network = "0.4"
-url = { version = "2.3.1", default-features = false }
+url = { version = "2.4.1", default-features = false }
tracing-subscriber = { version = "0.3" }
tracing = { version = "0.1" }
anyhow = { version = "1.0" }
diff --git a/rust/connlib/libs/common/Cargo.toml b/rust/connlib/libs/common/Cargo.toml
index f147f71ee..cb07ce2a0 100644
--- a/rust/connlib/libs/common/Cargo.toml
+++ b/rust/connlib/libs/common/Cargo.toml
@@ -20,7 +20,7 @@ thiserror = { version = "1.0", default-features = false }
tracing = { version = "0.1", default-features = false, features = ["std", "attributes"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
tokio = { version = "1.32", default-features = false, features = ["rt", "rt-multi-thread"]}
-url = { version = "2.3.1", default-features = false }
+url = { version = "2.4.1", default-features = false }
rand_core = { version = "0.6.4", default-features = false, features = ["std"] }
async-trait = { version = "0.1", default-features = false }
backoff = { workspace = true }
diff --git a/rust/phoenix-channel/Cargo.toml b/rust/phoenix-channel/Cargo.toml
index 3946d564d..280ba8889 100644
--- a/rust/phoenix-channel/Cargo.toml
+++ b/rust/phoenix-channel/Cargo.toml
@@ -12,7 +12,7 @@ base64 = "0.21.3"
serde = { version = "1.0.188", features = ["derive"] }
tracing = "0.1.37"
rand_core = "0.6.4"
-url = "2.4.0"
+url = "2.4.1"
serde_json = "1.0.105"
thiserror = "1.0.48"
tokio = { version = "1.32.0", features = ["net", "time"] }
diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml
index a0c6d3984..6935c4b0d 100644
--- a/rust/relay/Cargo.toml
+++ b/rust/relay/Cargo.toml
@@ -29,7 +29,7 @@ test-strategy = "0.3.1"
derive_more = { version = "0.99.17", features = ["from"] }
uuid = { version = "1.4.1", features = ["v4"] }
phoenix-channel = { path = "../phoenix-channel" }
-url = "2.4.0"
+url = "2.4.1"
serde = { version = "1.0.188", features = ["derive"] }
trackable = "1.3.0"
socket2 = "0.5.3"