Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
radicle: Fix required features for `fastrand`
Merged lorenz opened 6 months ago

The radicle crate would not build on its own with cargo build --package=radicle because some fastrand features were missing.

1 file changed +1 -1 f232acda 84dd8918
modified 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"] }