From f74d2f3796b21695122f6ccdaf237ffec6d320c6 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Wed, 24 Dec 2025 01:49:41 +0000 Subject: [PATCH] Cargo.toml: loosen dependency version on `chacha20` Not binding to a strict version of chacha20 (only a minimum) would make for a much smoother release process. Especially to get over the API breaks humps coming in rand_core 0.10.0-rc.3 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 05104ef288..545e0d83d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,7 +76,7 @@ exclude = ["benches", "distr_test"] rand_core = { version = "0.10.0-rc-2", default-features = false } log = { version = "0.4.4", optional = true } serde = { version = "1.0.103", features = ["derive"], optional = true } -chacha20 = { version = "=0.10.0-rc.5", default-features = false, features = ["rng"], optional = true } +chacha20 = { version = "0.10.0-rc.5", default-features = false, features = ["rng"], optional = true } getrandom = { version = "0.3.0", optional = true } [dev-dependencies]