-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
46 lines (36 loc) · 1.05 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
[package]
name = "algebra"
version = "0.1.0"
edition = "2018"
authors = [
"Ryan Lehmkuhl",
"Pratyush Mishra",
"Akshayaram Srinivasan",
"Wenting Zheng",
"Raluca Ada Popa",
]
description = "A library for finite field arithmetic"
keywords = ["cryptography", "finite fields"]
categories = ["cryptography"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "MIT/Apache-2.0"
################################# Dependencies ################################
[dependencies]
byteorder = { version = "1" }
rand = { version = "0.6" }
derivative = "1"
bit-vec = "0.4.4"
clippy = { version = "*", optional = true }
failure = { version = "0.1.1" }
failure_derive = { version = "0.1.1" }
serde = { version = "1", features = [ "derive" ] }
num-traits = { version = "0.2.6"}
ndarray = { version = "0.12", features = [ "serde-1" ] }
colored = { version = "1", optional = true }
rayon = { version = "1", optional = true }
[dev-dependencies]
blake2 = "0.10.4"
criterion = "0.2"
rand_chacha = "0.1.1"
[features]
parallel = [ "rayon" ]