diff --git a/Cargo.lock b/Cargo.lock index 572bfd23..495da0cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/crates/data-model/Cargo.toml b/crates/data-model/Cargo.toml index bd24c549..d23a4473 100644 --- a/crates/data-model/Cargo.toml +++ b/crates/data-model/Cargo.toml @@ -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" } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index d6ce0682..e277c999 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -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"