forked from orion-rs/orion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (35 loc) · 821 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
[package]
name = "orion"
version = "0.4.3"
authors = ["brycx <[email protected]>"]
description = "Easy and usable rust crypto"
keywords = [ "cryptography", "hmac", "hkdf", "pbkdf2", "cshake" ]
categories = [ "cryptography" ]
readme = "README.md"
repository = "https://github.com/brycx/orion"
documentation = "https://docs.rs/orion"
license = "MIT"
exclude = [
".gitignore",
".travis.yml",
"benches/*",
"fuzz/*",
]
[dependencies]
rand = "0.5.5"
sha2 = "0.7.1"
tiny-keccak = "1.4.2"
clear_on_drop = "0.2.3"
byte-tools = "0.2.0"
constant_time_eq = "0.1.3"
[dev-dependencies]
hex = "0.3.2"
ring = "0.13.2"
[profile.dev]
opt-level = 2
[profile.release]
opt-level = 3
[badges]
travis-ci = { repository = "brycx/orion" }
codecov = { repository = "brycx/orion" }
maintenance = { status = "experimental" }