From 688d5562d3f7f63200afc8c54ca939107bc8aec8 Mon Sep 17 00:00:00 2001 From: theoddgarlic Date: Tue, 2 Aug 2022 10:06:04 +0000 Subject: [PATCH] get rid of dep: namespaced features --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 713e991..a79732a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,8 +17,8 @@ rand_core = { version = "0.6", default-features = false, optional = true, featur [features] default = ["rng", "pcg_rng", "io"] # Controls availability of the `rand` module, which provides seeding for `rand` (the crate) RNGs. -rng = ["dep:rand_core"] +rng = ["rand_core"] # Controls the availability of `obtain_rng`, which internally uses `rand_pcg`. -pcg_rng = ["rng", "dep:rand_pcg"] +pcg_rng = ["rng", "rand_pcg"] # Controls the availability of the cross platform `io` module. -io = ["dep:once_cell"] +io = ["once_cell"]