-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable
fast
feature of ed25519-dalek (#190)
- Loading branch information
Showing
3 changed files
with
25 additions
and
7 deletions.
There are no files selected for viewing
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
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,31 +1,40 @@ | ||
[package] | ||
name = "recrypt" | ||
version = "0.14.0" | ||
version = "0.14.1" | ||
authors = ["IronCore Labs <[email protected]>"] | ||
readme = "README.md" | ||
license = "AGPL-3.0-only" | ||
repository = "https://github.com/IronCoreLabs/recrypt-rs" | ||
documentation = "https://docs.rs/recrypt" | ||
categories = ["cryptography", "algorithms"] | ||
keywords = ["cryptography", "proxy-re-encryption", "PRE", "ECC", "transform-encryption"] | ||
keywords = [ | ||
"cryptography", | ||
"proxy-re-encryption", | ||
"PRE", | ||
"ECC", | ||
"transform-encryption", | ||
] | ||
description = "A pure-Rust implementation of Transform Encryption, a Proxy Re-encryption scheme" | ||
edition = "2021" | ||
rust-version = "1.70.0" | ||
|
||
[target.'cfg(all(unix, not(target_arch = "wasm32")))'.dependencies] | ||
libc = {version = "0.2"} | ||
libc = { version = "0.2" } | ||
|
||
[target.'cfg(all(windows, not(target_arch = "wasm32")))'.dependencies] | ||
winapi = {version = "0.3", features = ["memoryapi", "sysinfoapi"]} | ||
winapi = { version = "0.3", features = ["memoryapi", "sysinfoapi"] } | ||
|
||
[dependencies] | ||
cfg-if = "1" | ||
clear_on_drop = "0.2" | ||
derivative = "2.1" | ||
# Disable all features for ed25519 and enable the proper ones down in the [features] section below | ||
ed25519-dalek = {version = "2.1.1", default-features = false, features = ["std", "rand_core"]} | ||
ed25519-dalek = { version = "2.1.1", default-features = false, features = [ | ||
"std", | ||
"rand_core", | ||
"fast", | ||
] } | ||
# Explicit dependency so we can pass the wasm-bindgen flag to it | ||
getrandom = {version = "0.2", optional = true} | ||
getrandom = { version = "0.2", optional = true } | ||
gridiron = "0.10" | ||
hex = "0.4" | ||
lazy_static = "1.4" | ||
|
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