forked from typed-io/cryptoxide
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
45 lines (35 loc) · 1.15 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
[package]
name = "cryptoxide"
version = "0.3.3"
authors = ["Vincent Hanquez <[email protected]>", "Nicolas Di Prima <[email protected]>", "The Rust-Crypto Project Developers"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/typed-io/cryptoxide/"
repository = "https://github.com/typed-io/cryptoxide/"
description = "pure implementation of various common modern cryptographic algorithms, WASM compatible"
keywords = [ "Crypto", "Cryptography", "Modern", "Pure" ]
categories = [ "cryptography" ]
edition = '2018'
[badges]
[lib]
doctest = false
[build-dependencies]
[dependencies]
sgx_tstd = { rev = "v1.1.3", git = "https://github.com/apache/teaclave-sgx-sdk.git", optional = true }
[features]
default = ["blake2", "sha1", "sha2", "sha3", "chacha", "salsa", "hkdf", "hmac", "pbkdf2", "poly1305", "scrypt", "curve25519", "ed25519"]
blake2 = ["digest", "mac"]
sha1 = ["digest"]
sha2 = ["digest"]
sha3 = ["digest"]
digest = []
chacha = []
salsa = []
mac = ["digest"]
hkdf = ["digest", "hmac"]
hmac = ["digest", "mac"]
pbkdf2 = ["mac"]
scrypt = ["pbkdf2", "mac", "hmac"]
poly1305 = ["mac"]
curve25519 = []
ed25519 = ["sha2", "curve25519"]
with-bench = []