diff --git a/Cargo.toml b/Cargo.toml index 7c6e9298..c0515335 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -195,7 +195,7 @@ mimalloc = { version = "0.1.48", features = ["override"] } thread_local = "1.1.9" bloomfilter = "3.0.1" uuid = "1.19.0" -rand = "0.10.0" +rand = "0.10.1" percent-encoding = "2.3.2" self_update = { version = "0.44.0", default-features = false, features = ["reqwest", "rustls", "archive-tar", "archive-zip", "compression-flate2"] } semver = "1.0.27" diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index 6f0ba9aa..ba952d19 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -142,6 +142,12 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" +[[package]] +name = "base32" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076" + [[package]] name = "base64" version = "0.22.1" @@ -1997,7 +2003,6 @@ dependencies = [ "hex", "memchr", "memmap2", - "once_cell", "parking_lot", "rustc-hash", "schemars", @@ -2024,17 +2029,17 @@ name = "kingfisher-rules" version = "0.1.0" dependencies = [ "anyhow", + "base32", "base64", "crc32fast", "hmac", "ignore", "include_dir", "kingfisher-core", - "lazy_static", "liquid", "liquid-core", "percent-encoding", - "rand 0.10.0", + "rand 0.10.1", "regex", "schemars", "serde", @@ -2062,7 +2067,6 @@ dependencies = [ "http", "kingfisher-core", "kingfisher-rules", - "once_cell", "parking_lot", "regex", "rustc-hash", @@ -2503,9 +2507,9 @@ dependencies = [ [[package]] name = "rand" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8" +checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207" dependencies = [ "chacha20", "getrandom 0.4.2",