1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-07 17:03:01 +03:00

Bump crc from 2.1.0 to 3.0.0

Bumps [crc](https://github.com/mrhooray/crc-rs) from 2.1.0 to 3.0.0.
- [Release notes](https://github.com/mrhooray/crc-rs/releases)
- [Commits](https://github.com/mrhooray/crc-rs/compare/2.1.0...3.0.0)

---
updated-dependencies:
- dependency-name: crc
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2022-04-29 12:58:19 +00:00
committed by Quentin Gliech
parent 8ca23f8ca1
commit 320edd5b86
3 changed files with 21 additions and 6 deletions

23
Cargo.lock generated
View File

@@ -896,7 +896,16 @@ version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49fc9a695bca7f35f5f4c15cddc84415f66a74ea78eef08e90c5024f2b540e23"
dependencies = [
"crc-catalog",
"crc-catalog 1.1.1",
]
[[package]]
name = "crc"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53757d12b596c16c78b83458d732a5d1a17ab3f53f2f7412f6fb57cc8a140ab3"
dependencies = [
"crc-catalog 2.1.0",
]
[[package]]
@@ -905,6 +914,12 @@ version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403"
[[package]]
name = "crc-catalog"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d0165d2900ae6778e36e80bbc4da3b5eefccee9ba939761f9c2882a5d9af3ff"
[[package]]
name = "crc32fast"
version = "1.3.2"
@@ -2065,7 +2080,7 @@ name = "mas-data-model"
version = "0.1.0"
dependencies = [
"chrono",
"crc",
"crc 3.0.0",
"mas-iana",
"mas-jose",
"oauth2-types",
@@ -2101,7 +2116,7 @@ dependencies = [
"axum-extra",
"axum-macros",
"chrono",
"crc",
"crc 3.0.0",
"data-encoding",
"elliptic-curve",
"headers",
@@ -3752,7 +3767,7 @@ dependencies = [
"byteorder",
"bytes 1.1.0",
"chrono",
"crc",
"crc 2.1.0",
"crossbeam-queue",
"dirs",
"either",

View File

@@ -10,7 +10,7 @@ chrono = "0.4.19"
thiserror = "1.0.30"
serde = "1.0.136"
url = { version = "2.2.2", features = ["serde"] }
crc = "2.1.0"
crc = "3.0.0"
rand = "0.8.5"
mas-iana = { path = "../iana" }

View File

@@ -44,7 +44,7 @@ rsa = "0.6.1"
pkcs8 = { version = "0.8.0", features = ["pem"] }
elliptic-curve = { version = "0.11.12", features = ["pem"] }
sha2 = "0.10.2"
crc = "2.1.0"
crc = "3.0.0"
# Various data types and utilities
data-encoding = "2.3.2"