aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2025-02-27 09:21:19 -0800
committerJack O'Connor <[email protected]>2025-02-27 09:21:56 -0800
commit8f4928fa7bedb4f4517c99e2db421613b9cd0769 (patch)
tree7d6e580db00120e40756df6e5e8562863ddbb84a
parent2cb802b115aa248f6534f353f26cc9060378bc31 (diff)
remove mmap from the default features list
I committed this change accidentally in a12fa7b8a4131d77c35eda5c680b9307a0fc28d3. Thanks to @ArmoredPony for catching this in https://github.com/BLAKE3-team/BLAKE3/issues/452.
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0f5a861..7bf3c4a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,7 +10,7 @@ readme = "README.md"
edition = "2021"
[features]
-default = ["std", "mmap"]
+default = ["std"]
# The NEON implementation does not participate in dynamic feature detection,
# which is currently x86-only. If "neon" is on, NEON support is assumed. Note