From 84dd89180a85a144d9c05bb7c9068468065b9e4c Mon Sep 17 00:00:00 2001 From: Lorenz Leutgeb Date: Sat, 11 Oct 2025 15:22:04 +0200 Subject: [PATCH] radicle: Fix required features for `fastrand` The `radicle` crate would not build on its own with `cargo build --package=radicle` because some `fastrand` features were missing. --- crates/radicle/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/radicle/Cargo.toml b/crates/radicle/Cargo.toml index 835e0be3..266a4178 100644 --- a/crates/radicle/Cargo.toml +++ b/crates/radicle/Cargo.toml @@ -24,7 +24,7 @@ crossbeam-channel = { workspace = true } cyphernet = { workspace = true, features = ["tor", "dns", "p2p-ed25519"] } dunce = { workspace = true } fast-glob = { version = "0.3.2" } -fastrand = { workspace = true } +fastrand = { workspace = true, features = ["std"] } git2 = { workspace = true, features = ["vendored-libgit2"] } indexmap = { version = "2", features = ["serde"] } localtime = { workspace = true, features = ["serde"] }