forked from cesarb/blake2-rfc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (26 loc) · 1006 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
[package]
name = "blake2-rfc"
version = "0.2.18"
authors = ["Cesar Eduardo Barros <[email protected]>"]
description = "A pure Rust implementation of BLAKE2 based on RFC 7693."
documentation = "https://docs.rs/blake2-rfc"
repository = "https://github.com/cesarb/blake2-rfc"
readme = "README.md"
keywords = ["blake2", "blake2b", "blake2s", "hash", "crypto"]
categories = ["cryptography", "no-std"]
license = "MIT OR Apache-2.0"
[badges]
travis-ci = { repository = "cesarb/blake2-rfc" }
[features]
default = ["mesalock_sgx"]
mesalock_sgx = ["sgx_tstd"]
simd = []
simd_opt = ["simd"]
simd_asm = ["simd_opt"]
std = []
[dependencies]
sgx_tstd = { rev = "v1.1.3", git = "https://github.com/apache/teaclave-sgx-sdk.git", optional = true }
arrayvec = { version = "0.5.1", git = "https://github.com/sgx-test/arrayvec-sgx", branch = "sgx", default-features = false }
constant_time_eq = { version = "0.1.3", git = "https://github.com/sgx-test/constant_time_eq-sgx" }
[dev-dependencies]
data-encoding = "2.0.0"