Skip to content

Commit d5e85a7

Browse files
committed
disable default features for blake2
1 parent eac8d54 commit d5e85a7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

blake2-mac/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ edition = "2018"
1313

1414
[dependencies]
1515
crypto-mac = "0.12.0-pre"
16-
blake2 = "0.10"
16+
blake2 = { version = "0.10", default-features = false }
1717

1818
[features]
1919
std = ["crypto-mac/std"]

blake2-mac/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ macro_rules! blake2_mac_impl {
152152

153153

154154
blake2_mac_impl!(Blake2bMac, Blake2bVarCore, U64, "Blake2b MAC function");
155-
156155
blake2_mac_impl!(Blake2sMac, Blake2sVarCore, U32, "Blake2s MAC function");
157156

158157
/// BLAKE2b-512 MAC state.

0 commit comments

Comments
 (0)