-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
34 lines (29 loc) · 999 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
[package]
name = "sarkara"
version = "0.10.0-alpha.4"
authors = ["quininer kel <[email protected]>"]
description = "A experimental post-quantum cryptography library."
repository = "https://github.com/quininer/sarkara"
documentation = "https://docs.rs/sarkara/"
keywords = [ "post-quantum", "cryptography" ]
license = "MIT"
categories = [ "cryptography" ]
edition = "2018"
[badges]
travis-ci = { repository = "quininer/sarkara" }
appveyor = { repository = "quininer/sarkara" }
[badges.maintenance]
status = "experimental"
[dependencies]
rand = "0.5"
arrayref = "0.3"
seckey = { version = "0.9", features = [ "nightly" ] }
failure = "0.1"
kyber = "=0.2.0-alpha.2"
dilithium = "=0.2.0-alpha.3"
norx-permutation = { version = "0.1", default-features = false, features = [ "W64", "L4" ] }
norx = { version = "0.1", default-features = false, features = [ "W64", "L4", "P1" ] }
mem-aead-mrs = "0.1"
serde = { version = "1", optional = true }
[features]
simd = [ "norx-permutation/simd", "norx/simd" ]