|
1 | 1 | [package] |
2 | 2 | name = "recrypt" |
3 | | -version = "0.14.0" |
| 3 | +version = "0.14.1" |
4 | 4 | authors = ["IronCore Labs <info@ironcorelabs.com>"] |
5 | 5 | readme = "README.md" |
6 | 6 | license = "AGPL-3.0-only" |
7 | 7 | repository = "https://github.com/IronCoreLabs/recrypt-rs" |
8 | 8 | documentation = "https://docs.rs/recrypt" |
9 | 9 | categories = ["cryptography", "algorithms"] |
10 | | -keywords = ["cryptography", "proxy-re-encryption", "PRE", "ECC", "transform-encryption"] |
| 10 | +keywords = [ |
| 11 | + "cryptography", |
| 12 | + "proxy-re-encryption", |
| 13 | + "PRE", |
| 14 | + "ECC", |
| 15 | + "transform-encryption", |
| 16 | +] |
11 | 17 | description = "A pure-Rust implementation of Transform Encryption, a Proxy Re-encryption scheme" |
12 | 18 | edition = "2021" |
13 | 19 | rust-version = "1.70.0" |
14 | 20 |
|
15 | 21 | [target.'cfg(all(unix, not(target_arch = "wasm32")))'.dependencies] |
16 | | -libc = {version = "0.2"} |
| 22 | +libc = { version = "0.2" } |
17 | 23 |
|
18 | 24 | [target.'cfg(all(windows, not(target_arch = "wasm32")))'.dependencies] |
19 | | -winapi = {version = "0.3", features = ["memoryapi", "sysinfoapi"]} |
| 25 | +winapi = { version = "0.3", features = ["memoryapi", "sysinfoapi"] } |
20 | 26 |
|
21 | 27 | [dependencies] |
22 | 28 | cfg-if = "1" |
23 | 29 | clear_on_drop = "0.2" |
24 | 30 | derivative = "2.1" |
25 | | -# Disable all features for ed25519 and enable the proper ones down in the [features] section below |
26 | | -ed25519-dalek = {version = "2.1.1", default-features = false, features = ["std", "rand_core"]} |
| 31 | +ed25519-dalek = { version = "2.1.1", default-features = false, features = [ |
| 32 | + "std", |
| 33 | + "rand_core", |
| 34 | + "fast", |
| 35 | +] } |
27 | 36 | # Explicit dependency so we can pass the wasm-bindgen flag to it |
28 | | -getrandom = {version = "0.2", optional = true} |
| 37 | +getrandom = { version = "0.2", optional = true } |
29 | 38 | gridiron = "0.10" |
30 | 39 | hex = "0.4" |
31 | 40 | lazy_static = "1.4" |
|
0 commit comments