-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: thibault-martinez <[email protected]>
- Loading branch information
1 parent
54ddf21
commit 44daa76
Showing
3 changed files
with
8 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# Changelog | ||
|
||
## \[0.14.1] | ||
|
||
- Forces the use of `[email protected]` since all previous `0.2` versions have been yanked. | ||
- [54ddf21](https://www.github.com/iotaledger/crypto.rs/commit/54ddf215954aff72701d50997fe73068f4e480cb) Address `cpufeatures` being yanked ([#158](https://www.github.com/iotaledger/crypto.rs/pull/158)) on 2022-09-05 | ||
|
||
## \[0.14.0] | ||
|
||
- Add aead_encrypt and aead_decrypt convenience functions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "iota-crypto" | ||
version = "0.14.0" | ||
version = "0.14.1" | ||
license = "Apache-2.0" | ||
authors = [ | ||
"Gustav Behm <[email protected]>", | ||
|
@@ -36,7 +36,7 @@ aes-cbc = [ | |
aes-kw = [ "aes-crate" ] | ||
aes-gcm = [ "aes-gcm-crate", "cipher" ] | ||
chacha = [ "chacha20poly1305", "cipher", "dep:cpufeatures" ] | ||
ed25519 = [ "ed25519-zebra", "dep:cpufeatures" ] | ||
ed25519 = [ "ed25519-zebra", "dep:cpufeatures" ] | ||
x25519 = [ "x25519-dalek", "curve25519-dalek" ] | ||
random = [ "getrandom" ] | ||
aes = [ "aes-cbc", "aes-gcm", "aes-kw", "dep:cpufeatures" ] | ||
|
@@ -61,7 +61,7 @@ wots_deprecated_do_not_use = [ | |
"rand", | ||
"bee-common-derive" | ||
] | ||
sha = [ "sha2", "digest", "dep:cpufeatures" ] | ||
sha = [ "sha2", "digest", "dep:cpufeatures" ] | ||
hmac = [ "hmac_" ] | ||
pbkdf = [ "pbkdf2" ] | ||
bip39 = [ "pbkdf", "hmac", "sha", "pbkdf", "unicode-normalization" ] | ||
|
@@ -97,10 +97,6 @@ unicode-normalization = { version = "0.1", optional = true, default-features = f | |
curve25519-dalek = { version = "3", optional = true, default-features = false, features = [ "u64_backend" ] } | ||
x25519-dalek = { version = "1.1", optional = true, default-features = false, features = [ "u64_backend" ] } | ||
zeroize = { version = "1.3", optional = true, default-features = false, features = [ "zeroize_derive" ] } | ||
|
||
# Lower versions of `cpufeatures` have been yanked. | ||
# This addition is temporary to force the use of this specific version. | ||
# It should be properly handled by upgrading the other dependencies. | ||
cpufeatures = { version = "0.2.5", optional = true, default-features = false } | ||
|
||
[dev-dependencies] | ||
|