diff --git a/Cargo.lock b/Cargo.lock index cfbdc9b..936b075 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -47,7 +47,7 @@ name = "base64-simd" version = "0.9.0-dev" dependencies = [ "base64", - "const-str", + "const-str 0.6.4", "getrandom", "outref", "rand", @@ -107,6 +107,12 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "451d0640545a0553814b4c646eb549343561618838e9b42495f466131fe3ad49" +[[package]] +name = "const-str" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0664d2867b4a32697dfe655557f5c3b187e9b605b38612a748e5ec99811d160" + [[package]] name = "cpufeatures" version = "0.3.0" @@ -560,7 +566,7 @@ dependencies = [ name = "vsimd" version = "0.9.0-dev" dependencies = [ - "const-str", + "const-str 0.7.1", "getrandom", "rand", "wasm-bindgen-test", diff --git a/crates/vsimd/Cargo.toml b/crates/vsimd/Cargo.toml index 2fce023..15cbd01 100644 --- a/crates/vsimd/Cargo.toml +++ b/crates/vsimd/Cargo.toml @@ -21,7 +21,7 @@ detect = ["std"] unstable = [] [dev-dependencies] -const-str = "0.6" +const-str = "0.7" rand = "0.10" [target.'cfg(target_arch="wasm32")'.dev-dependencies]