1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-07 22:41:18 +03:00

Bump url from 2.2.2 to 2.3.0

Bumps [url](https://github.com/servo/rust-url) from 2.2.2 to 2.3.0.
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](https://github.com/servo/rust-url/compare/v2.2.2...v2.3.0)

---
updated-dependencies:
- dependency-name: url
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2022-09-07 19:31:39 +00:00
committed by Quentin Gliech
parent 9d5e19f65c
commit db0360948d
11 changed files with 12 additions and 13 deletions

5
Cargo.lock generated
View File

@ -5145,13 +5145,12 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
version = "2.2.2"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
checksum = "22fe195a4f217c25b25cb5058ced57059824a678474874038dc88d211bf508d3"
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
"serde",
]

View File

@ -27,7 +27,7 @@ thiserror = "1.0.34"
tokio = "1.20.1"
tower = { version = "0.4.13", features = ["util"] }
tracing = "0.1.36"
url = "2.2.2"
url = "2.3.0"
mas-data-model = { path = "../data-model" }
mas-http = { path = "../http", features = ["client"] }

View File

@ -16,7 +16,7 @@ tower = { version = "0.4.13", features = ["full"] }
hyper = { version = "0.14.20", features = ["full"] }
serde_yaml = "0.9.11"
serde_json = "1.0.85"
url = "2.2.2"
url = "2.3.0"
argon2 = { version = "0.4.1", features = ["password-hash"] }
reqwest = { version = "0.11.11", features = ["rustls-tls"], default-features = false, optional = true }
watchman_client = "0.8.0"

View File

@ -16,7 +16,7 @@ anyhow = "1.0.64"
schemars = { version = "0.8.10", features = ["url", "chrono"] }
figment = { version = "0.10.7", features = ["env", "yaml", "test"] }
chrono = { version = "0.4.22", features = ["serde"] }
url = { version = "2.2.2", features = ["serde"] }
url = { version = "2.3.0", features = ["serde"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_with = { version = "2.0.0", features = ["hex", "chrono"] }

View File

@ -9,7 +9,7 @@ license = "Apache-2.0"
chrono = "0.4.22"
thiserror = "1.0.34"
serde = "1.0.144"
url = { version = "2.2.2", features = ["serde"] }
url = { version = "2.3.0", features = ["serde"] }
crc = "3.0.0"
rand = "0.8.5"

View File

@ -41,7 +41,7 @@ argon2 = { version = "0.4.1", features = ["password-hash"] }
# Various data types and utilities
chrono = { version = "0.4.22", features = ["serde"] }
url = { version = "2.2.2", features = ["serde"] }
url = { version = "2.3.0", features = ["serde"] }
mime = "0.3.16"
rand = "0.8.5"
headers = "0.3.8"

View File

@ -28,6 +28,6 @@ sha2 = "0.10.5"
signature = "1.6.0"
thiserror = "1.0.34"
tracing = "0.1.36"
url = { version = "2.2.2", features = ["serde"] }
url = { version = "2.3.0", features = ["serde"] }
mas-iana = { path = "../iana" }

View File

@ -10,7 +10,7 @@ http = "0.2.8"
serde = "1.0.144"
serde_json = "1.0.85"
language-tags = { version = "0.3.2", features = ["serde"] }
url = { version = "2.2.2", features = ["serde"] }
url = { version = "2.3.0", features = ["serde"] }
parse-display = "0.6.0"
indoc = "1.0.7"
serde_with = { version = "2.0.0", features = ["chrono"] }

View File

@ -10,4 +10,4 @@ axum = { version = "0.6.0-rc.1", default-features = false }
serde = { version = "1.0.144", features = ["derive"] }
serde_urlencoded = "0.7.1"
serde_with = "2.0.0"
url = "2.2.2"
url = "2.3.0"

View File

@ -19,7 +19,7 @@ tracing = "0.1.36"
argon2 = { version = "0.4.1", features = ["password-hash"] }
password-hash = { version = "0.4.2", features = ["std"] }
rand = "0.8.5"
url = { version = "2.2.2", features = ["serde"] }
url = { version = "2.3.0", features = ["serde"] }
oauth2-types = { path = "../oauth2-types" }
mas-data-model = { path = "../data-model" }

View File

@ -21,7 +21,7 @@ serde_json = "1.0.85"
serde_urlencoded = "0.7.1"
chrono = "0.4.22"
url = "2.2.2"
url = "2.3.0"
oauth2-types = { path = "../oauth2-types" }
mas-data-model = { path = "../data-model" }