You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-31 09:24:31 +03:00
Bump url from 2.3.0 to 2.3.1
Bumps [url](https://github.com/servo/rust-url) from 2.3.0 to 2.3.1. - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.3.0...v2.3.1) --- updated-dependencies: - dependency-name: url dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
committed by
Quentin Gliech
parent
db0360948d
commit
9ae7e2216d
27
Cargo.lock
generated
27
Cargo.lock
generated
@ -1548,11 +1548,10 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
||||
|
||||
[[package]]
|
||||
name = "form_urlencoded"
|
||||
version = "1.0.1"
|
||||
version = "1.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
|
||||
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
|
||||
dependencies = [
|
||||
"matches",
|
||||
"percent-encoding",
|
||||
]
|
||||
|
||||
@ -2032,6 +2031,16 @@ dependencies = [
|
||||
"unicode-normalization",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
||||
dependencies = [
|
||||
"unicode-bidi",
|
||||
"unicode-normalization",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ignore"
|
||||
version = "0.4.18"
|
||||
@ -2249,7 +2258,7 @@ dependencies = [
|
||||
"futures-util",
|
||||
"hostname",
|
||||
"httpdate",
|
||||
"idna",
|
||||
"idna 0.2.3",
|
||||
"mime",
|
||||
"nom",
|
||||
"once_cell",
|
||||
@ -3252,9 +3261,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "percent-encoding"
|
||||
version = "2.1.0"
|
||||
version = "2.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
|
||||
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
||||
|
||||
[[package]]
|
||||
name = "pest"
|
||||
@ -5145,12 +5154,12 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
||||
|
||||
[[package]]
|
||||
name = "url"
|
||||
version = "2.3.0"
|
||||
version = "2.3.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "22fe195a4f217c25b25cb5058ced57059824a678474874038dc88d211bf508d3"
|
||||
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
|
||||
dependencies = [
|
||||
"form_urlencoded",
|
||||
"idna",
|
||||
"idna 0.3.0",
|
||||
"percent-encoding",
|
||||
"serde",
|
||||
]
|
||||
|
@ -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.3.0"
|
||||
url = "2.3.1"
|
||||
|
||||
mas-data-model = { path = "../data-model" }
|
||||
mas-http = { path = "../http", features = ["client"] }
|
||||
|
@ -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.3.0"
|
||||
url = "2.3.1"
|
||||
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"
|
||||
|
@ -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.3.0", features = ["serde"] }
|
||||
url = { version = "2.3.1", features = ["serde"] }
|
||||
|
||||
serde = { version = "1.0.144", features = ["derive"] }
|
||||
serde_with = { version = "2.0.0", features = ["hex", "chrono"] }
|
||||
|
@ -9,7 +9,7 @@ license = "Apache-2.0"
|
||||
chrono = "0.4.22"
|
||||
thiserror = "1.0.34"
|
||||
serde = "1.0.144"
|
||||
url = { version = "2.3.0", features = ["serde"] }
|
||||
url = { version = "2.3.1", features = ["serde"] }
|
||||
crc = "3.0.0"
|
||||
rand = "0.8.5"
|
||||
|
||||
|
@ -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.3.0", features = ["serde"] }
|
||||
url = { version = "2.3.1", features = ["serde"] }
|
||||
mime = "0.3.16"
|
||||
rand = "0.8.5"
|
||||
headers = "0.3.8"
|
||||
|
@ -28,6 +28,6 @@ sha2 = "0.10.5"
|
||||
signature = "1.6.0"
|
||||
thiserror = "1.0.34"
|
||||
tracing = "0.1.36"
|
||||
url = { version = "2.3.0", features = ["serde"] }
|
||||
url = { version = "2.3.1", features = ["serde"] }
|
||||
|
||||
mas-iana = { path = "../iana" }
|
||||
|
@ -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.3.0", features = ["serde"] }
|
||||
url = { version = "2.3.1", features = ["serde"] }
|
||||
parse-display = "0.6.0"
|
||||
indoc = "1.0.7"
|
||||
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_urlencoded = "0.7.1"
|
||||
serde_with = "2.0.0"
|
||||
url = "2.3.0"
|
||||
url = "2.3.1"
|
||||
|
@ -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.3.0", features = ["serde"] }
|
||||
url = { version = "2.3.1", features = ["serde"] }
|
||||
|
||||
oauth2-types = { path = "../oauth2-types" }
|
||||
mas-data-model = { path = "../data-model" }
|
||||
|
@ -21,7 +21,7 @@ serde_json = "1.0.85"
|
||||
serde_urlencoded = "0.7.1"
|
||||
|
||||
chrono = "0.4.22"
|
||||
url = "2.3.0"
|
||||
url = "2.3.1"
|
||||
|
||||
oauth2-types = { path = "../oauth2-types" }
|
||||
mas-data-model = { path = "../data-model" }
|
||||
|
Reference in New Issue
Block a user