-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (50 loc) · 1.44 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "ecies-ed25519-morus"
version = "0.2.0"
edition = "2021"
authors = ["Aditya Kresna <[email protected]>"]
categories = ["cryptography", "no-std::no-alloc"]
description = "Experimental Integrated Encryption Scheme on Ed25519 using MORUS-1280-128 and Blake3"
keywords = ["ecies", "encryption", "ed25519", "curve25519", "morus"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ujang360/ecies-ed25519-morus"
[features]
default = ["std"]
std = [
"blake3/std",
"ed25519-dalek/std",
"hex/std",
"rand_core/std",
"thiserror-no-std/std",
"zeroize/std",
]
aarch64-optimizations = ["blake3/neon", "zeroize/aarch64"]
pure = ["blake3/pure"]
[dependencies]
arrayref = "0.3.7"
blake3 = { version = "1.4.0", default-features = false }
curve25519-dalek = { version = "4.0.0-rc.3", default-features = false, features = [
"precomputed-tables",
"rand_core",
"serde",
"zeroize",
] }
ed25519-dalek = { version = "2.0.0-rc.3", default-features = false, features = [
"fast",
"rand_core",
"serde",
"signature",
"zeroize",
] }
hex = { version = "0.4.3", default-features = false }
rand_core = { version = "0.6.4", default-features = false, features = [
"getrandom",
"serde",
] }
serde = { version = "1.0.164", default-features = false, features = ["derive"] }
thiserror-no-std = "2.0.2"
zeroize = { version = "1.6.0", default-features = false, features = [
"derive",
"serde",
] }