diff --git a/Cargo.lock b/Cargo.lock index a8ba77d..0b5eb6d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -94,6 +94,15 @@ dependencies = [ "generic-array", ] +[[package]] +name = "block-buffer" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa" +dependencies = [ + "hybrid-array", +] + [[package]] name = "cc" version = "1.4.3" @@ -165,6 +174,12 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" +[[package]] +name = "const-oid" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" + [[package]] name = "cpufeatures" version = "0.2.17" @@ -174,6 +189,15 @@ dependencies = [ "libc", ] +[[package]] +name = "cpufeatures" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" +dependencies = [ + "libc", +] + [[package]] name = "crc32fast" version = "1.5.0" @@ -193,14 +217,34 @@ dependencies = [ "typenum", ] +[[package]] +name = "crypto-common" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453" +dependencies = [ + "hybrid-array", +] + [[package]] name = "digest" version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ - "block-buffer", - "crypto-common", + "block-buffer 0.10.4", + "crypto-common 0.1.7", +] + +[[package]] +name = "digest" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" +dependencies = [ + "block-buffer 0.12.1", + "const-oid", + "crypto-common 0.2.2", ] [[package]] @@ -295,6 +339,15 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" +[[package]] +name = "hybrid-array" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b" +dependencies = [ + "typenum", +] + [[package]] name = "icu_collections" version = "2.1.1" @@ -669,8 +722,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ "cfg-if", - "cpufeatures", - "digest", + "cpufeatures 0.2.17", + "digest 0.10.7", +] + +[[package]] +name = "sha2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "digest 0.11.3", ] [[package]] @@ -947,7 +1011,7 @@ checksum = "1ad536c30d7c4765f71b6def933d06b10cb8aa8f6668da7196cda4c3fefcf5ca" dependencies = [ "serde", "serde_json", - "sha2", + "sha2 0.10.9", ] [[package]] @@ -982,7 +1046,7 @@ dependencies = [ "flate2", "serde", "serde_json", - "sha2", + "sha2 0.11.0", "tar", "ureq", "wright-driver", @@ -1013,7 +1077,7 @@ version = "0.2.8" dependencies = [ "serde", "serde_json", - "sha2", + "sha2 0.11.0", "workshop-rs", "wright-analyzer", "wright-core", @@ -1073,7 +1137,7 @@ version = "0.2.8" dependencies = [ "serde", "serde_json", - "sha2", + "sha2 0.11.0", "workshop-rs", "wright-core", "wright-ir", @@ -1085,7 +1149,7 @@ name = "wright-ostw" version = "0.2.8" dependencies = [ "serde_json", - "sha2", + "sha2 0.11.0", "workshop-rs", "wright-core", "wright-ir", diff --git a/crates/wright-cli/Cargo.toml b/crates/wright-cli/Cargo.toml index b346ce6..8c1a5ed 100644 --- a/crates/wright-cli/Cargo.toml +++ b/crates/wright-cli/Cargo.toml @@ -19,7 +19,7 @@ clap_complete = "4.5" flate2 = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" -sha2 = "0.10" +sha2 = "0.11" tar = "0.4" ureq = "2" wright-driver = { path = "../wright-driver" } diff --git a/crates/wright-driver/Cargo.toml b/crates/wright-driver/Cargo.toml index 737e47f..b6cb624 100644 --- a/crates/wright-driver/Cargo.toml +++ b/crates/wright-driver/Cargo.toml @@ -12,7 +12,7 @@ workspace = true [dependencies] serde = { version = "1", features = ["derive"] } serde_json = "1" -sha2 = "0.10" +sha2 = "0.11" wright-analyzer = { path = "../wright-analyzer" } wright-core = { path = "../wright-core" } wright-ir = { path = "../wright-ir" } diff --git a/crates/wright-opy/Cargo.toml b/crates/wright-opy/Cargo.toml index b997c84..dbb4bb1 100644 --- a/crates/wright-opy/Cargo.toml +++ b/crates/wright-opy/Cargo.toml @@ -19,4 +19,4 @@ wright-workshop = { path = "../wright-workshop" } workshop-rs.workspace = true [dev-dependencies] -sha2 = "0.10" +sha2 = "0.11" diff --git a/crates/wright-ostw/Cargo.toml b/crates/wright-ostw/Cargo.toml index 9a14591..e5f1340 100644 --- a/crates/wright-ostw/Cargo.toml +++ b/crates/wright-ostw/Cargo.toml @@ -17,7 +17,7 @@ workshop-rs.workspace = true [dev-dependencies] serde_json = "1.0" -sha2 = "0.10" +sha2 = "0.11" wright-core = { path = "../wright-core" } wright-opy = { path = "../wright-opy" } wright-transform = { path = "../wright-transform" }