You've already forked authentication-service
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:
committed by
Quentin Gliech
parent
9d5e19f65c
commit
db0360948d
5
Cargo.lock
generated
5
Cargo.lock
generated
@ -5145,13 +5145,12 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "url"
|
name = "url"
|
||||||
version = "2.2.2"
|
version = "2.3.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
|
checksum = "22fe195a4f217c25b25cb5058ced57059824a678474874038dc88d211bf508d3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"form_urlencoded",
|
"form_urlencoded",
|
||||||
"idna",
|
"idna",
|
||||||
"matches",
|
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
"serde",
|
"serde",
|
||||||
]
|
]
|
||||||
|
@ -27,7 +27,7 @@ thiserror = "1.0.34"
|
|||||||
tokio = "1.20.1"
|
tokio = "1.20.1"
|
||||||
tower = { version = "0.4.13", features = ["util"] }
|
tower = { version = "0.4.13", features = ["util"] }
|
||||||
tracing = "0.1.36"
|
tracing = "0.1.36"
|
||||||
url = "2.2.2"
|
url = "2.3.0"
|
||||||
|
|
||||||
mas-data-model = { path = "../data-model" }
|
mas-data-model = { path = "../data-model" }
|
||||||
mas-http = { path = "../http", features = ["client"] }
|
mas-http = { path = "../http", features = ["client"] }
|
||||||
|
@ -16,7 +16,7 @@ tower = { version = "0.4.13", features = ["full"] }
|
|||||||
hyper = { version = "0.14.20", features = ["full"] }
|
hyper = { version = "0.14.20", features = ["full"] }
|
||||||
serde_yaml = "0.9.11"
|
serde_yaml = "0.9.11"
|
||||||
serde_json = "1.0.85"
|
serde_json = "1.0.85"
|
||||||
url = "2.2.2"
|
url = "2.3.0"
|
||||||
argon2 = { version = "0.4.1", features = ["password-hash"] }
|
argon2 = { version = "0.4.1", features = ["password-hash"] }
|
||||||
reqwest = { version = "0.11.11", features = ["rustls-tls"], default-features = false, optional = true }
|
reqwest = { version = "0.11.11", features = ["rustls-tls"], default-features = false, optional = true }
|
||||||
watchman_client = "0.8.0"
|
watchman_client = "0.8.0"
|
||||||
|
@ -16,7 +16,7 @@ anyhow = "1.0.64"
|
|||||||
schemars = { version = "0.8.10", features = ["url", "chrono"] }
|
schemars = { version = "0.8.10", features = ["url", "chrono"] }
|
||||||
figment = { version = "0.10.7", features = ["env", "yaml", "test"] }
|
figment = { version = "0.10.7", features = ["env", "yaml", "test"] }
|
||||||
chrono = { version = "0.4.22", features = ["serde"] }
|
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 = { version = "1.0.144", features = ["derive"] }
|
||||||
serde_with = { version = "2.0.0", features = ["hex", "chrono"] }
|
serde_with = { version = "2.0.0", features = ["hex", "chrono"] }
|
||||||
|
@ -9,7 +9,7 @@ license = "Apache-2.0"
|
|||||||
chrono = "0.4.22"
|
chrono = "0.4.22"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.34"
|
||||||
serde = "1.0.144"
|
serde = "1.0.144"
|
||||||
url = { version = "2.2.2", features = ["serde"] }
|
url = { version = "2.3.0", features = ["serde"] }
|
||||||
crc = "3.0.0"
|
crc = "3.0.0"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ argon2 = { version = "0.4.1", features = ["password-hash"] }
|
|||||||
|
|
||||||
# Various data types and utilities
|
# Various data types and utilities
|
||||||
chrono = { version = "0.4.22", features = ["serde"] }
|
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"
|
mime = "0.3.16"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
headers = "0.3.8"
|
headers = "0.3.8"
|
||||||
|
@ -28,6 +28,6 @@ sha2 = "0.10.5"
|
|||||||
signature = "1.6.0"
|
signature = "1.6.0"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.34"
|
||||||
tracing = "0.1.36"
|
tracing = "0.1.36"
|
||||||
url = { version = "2.2.2", features = ["serde"] }
|
url = { version = "2.3.0", features = ["serde"] }
|
||||||
|
|
||||||
mas-iana = { path = "../iana" }
|
mas-iana = { path = "../iana" }
|
||||||
|
@ -10,7 +10,7 @@ http = "0.2.8"
|
|||||||
serde = "1.0.144"
|
serde = "1.0.144"
|
||||||
serde_json = "1.0.85"
|
serde_json = "1.0.85"
|
||||||
language-tags = { version = "0.3.2", features = ["serde"] }
|
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"
|
parse-display = "0.6.0"
|
||||||
indoc = "1.0.7"
|
indoc = "1.0.7"
|
||||||
serde_with = { version = "2.0.0", features = ["chrono"] }
|
serde_with = { version = "2.0.0", features = ["chrono"] }
|
||||||
|
@ -10,4 +10,4 @@ axum = { version = "0.6.0-rc.1", default-features = false }
|
|||||||
serde = { version = "1.0.144", features = ["derive"] }
|
serde = { version = "1.0.144", features = ["derive"] }
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
serde_with = "2.0.0"
|
serde_with = "2.0.0"
|
||||||
url = "2.2.2"
|
url = "2.3.0"
|
||||||
|
@ -19,7 +19,7 @@ tracing = "0.1.36"
|
|||||||
argon2 = { version = "0.4.1", features = ["password-hash"] }
|
argon2 = { version = "0.4.1", features = ["password-hash"] }
|
||||||
password-hash = { version = "0.4.2", features = ["std"] }
|
password-hash = { version = "0.4.2", features = ["std"] }
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
url = { version = "2.2.2", features = ["serde"] }
|
url = { version = "2.3.0", features = ["serde"] }
|
||||||
|
|
||||||
oauth2-types = { path = "../oauth2-types" }
|
oauth2-types = { path = "../oauth2-types" }
|
||||||
mas-data-model = { path = "../data-model" }
|
mas-data-model = { path = "../data-model" }
|
||||||
|
@ -21,7 +21,7 @@ serde_json = "1.0.85"
|
|||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
|
|
||||||
chrono = "0.4.22"
|
chrono = "0.4.22"
|
||||||
url = "2.2.2"
|
url = "2.3.0"
|
||||||
|
|
||||||
oauth2-types = { path = "../oauth2-types" }
|
oauth2-types = { path = "../oauth2-types" }
|
||||||
mas-data-model = { path = "../data-model" }
|
mas-data-model = { path = "../data-model" }
|
||||||
|
Reference in New Issue
Block a user