-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
71 lines (57 loc) · 1016 Bytes
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "orion-fuzz"
version = "0.1.0"
authors = ["brycx <brycx@protonmail.com>"]
edition = "2018"
[dependencies]
honggfuzz = "0.5.56"
rand = "0.8.3"
rand_chacha = "0.3.0"
sodiumoxide = "0.2.6"
ring = "0.17.8"
blake2-rfc = "0.2.18"
chacha = "0.3.0"
rust-argon2 = "2.1.0"
x25519-dalek = "2.0.1"
bincode = "1.3.3"
serde = "1.0.124"
sha3 = "0.10.6"
[dependencies.orion]
git = "https://github.com/orion-rs/orion"
branch = "master"
features = ["serde"]
[[bin]]
name = "high_level_api"
path = "src/high_level_api.rs"
[[bin]]
name = "aead"
path = "src/aead.rs"
[[bin]]
name = "hash"
path = "src/hash.rs"
[[bin]]
name = "mac"
path = "src/mac.rs"
[[bin]]
name = "stream"
path = "src/stream.rs"
[[bin]]
name = "newtypes"
path = "src/newtypes.rs"
[[bin]]
name = "kdf"
path = "src/kdf.rs"
[[bin]]
name = "aead_stream"
path = "src/aead_stream.rs"
[[bin]]
name = "ecc"
path = "src/ecc.rs"
[[bin]]
name = "serde"
path = "src/serde.rs"
[[bin]]
name = "xof"
path = "src/xof.rs"
[profile.release]
opt-level = 3