aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2025-08-15 18:26:48 +0200
committerDaniel Schadt <kingdread@gmx.de>2025-08-15 18:26:48 +0200
commit180f4b3817ee841391ccd83a9a9701e950833dfa (patch)
treef437b8fa143c69c6ed48c59b6ea174fd96bea7e5 /Cargo.toml
parent620540b2f974aaa25b30b92ac02ab718e55bd0df (diff)
downloadzears-180f4b3817ee841391ccd83a9a9701e950833dfa.tar.gz
zears-180f4b3817ee841391ccd83a9a9701e950833dfa.tar.bz2
zears-180f4b3817ee841391ccd83a9a9701e950833dfa.zip
make std optional
turns out, we're not using much of it anyway
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 19e2939..ea585b5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,7 +10,9 @@ keywords = ["aez", "aezv5", "aead", "encryption", "cipher"]
categories = ["algorithms", "cryptography"]
[features]
+default = ["std"]
simd = []
+std = []
[dependencies]
aes = { version = "0.8.4", features = ["hazmat"] }