aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorNazar Mokrynskyi <[email protected]>2025-04-17 12:26:46 +0300
committerJack O'Connor <[email protected]>2025-04-20 15:43:34 -0700
commit21afc1a02f79a1bc8fc14156b0e95c8711c03371 (patch)
tree27328205cc1ae53fd75376296a1d32de32276494 /Cargo.toml
parentdaef27f9a85f9fb7781704479b8a714e71271e0c (diff)
Remove `std` feature from `rayon` feature
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 46c7d74..5efda24 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -38,7 +38,7 @@ std = []
#
# Implementation detail: We take a dependency on rayon-core instead of rayon,
# because it builds faster and still includes all the APIs we need.
-rayon = ["dep:rayon-core", "std"]
+rayon = ["dep:rayon-core"]
# The `mmap` feature (disabled by default, but enabled for docs.rs) adds the
# `update_mmap` and (in combination with `rayon` above) `update_mmap_rayon`
@@ -114,7 +114,7 @@ arrayref = "0.3.5"
arrayvec = { version = "0.7.4", default-features = false }
constant_time_eq = { version = "0.3.1", default-features = false }
cfg-if = "1.0.0"
-digest = { version = "0.10.1", features = [ "mac" ], optional = true }
+digest = { version = "0.10.1", features = ["mac"], optional = true }
memmap2 = { version = "0.9", optional = true }
rayon-core = { version = "1.12.1", optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }