-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
51 lines (42 loc) · 1.01 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
[package]
authors = ["Łukasz Jan Niemier <lukasz@niemier.pl>"]
description = "Highly modular crypto & hash library written in pure Rust. WARNING!!! Not suitable for production."
documentation = "http://liboctavo.github.io/octavo"
homepage = "http://liboctavo.github.io/"
keywords = ["cryptography", "hash", "meta"]
license = "MIT"
name = "octavo"
readme = "README.md"
repository = "https://github.com/libOctavo/octavo"
version = "0.1.1"
[dependencies]
[dependencies.octavo-crypto]
optional = true
path = "./crypto"
version = "0.1.0"
[dependencies.octavo-digest]
optional = true
path = "./digest"
version = "0.1.0"
[dependencies.octavo-kdf]
optional = true
path = "./kdf"
version = "0.1.0"
[dependencies.octavo-mac]
optional = true
path = "./mac"
version = "0.1.0"
[features]
crypto = ["octavo-crypto"]
default = ["crypto", "digest", "kdf", "mac"]
digest = ["octavo-digest"]
kdf = ["octavo-kdf"]
mac = ["octavo-mac"]
unstable = []
[profile]
[profile.bench]
lto = true
opt-level = 3
[profile.release]
lto = true
opt-level = 3