forked from zkcrypto/group
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 926 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 = "group"
version = "0.12.0"
authors = [
"Sean Bowe <[email protected]>",
"Jack Grigg <[email protected]>",
]
readme = "README.md"
license = "MIT/Apache-2.0"
description = "Elliptic curve group traits and utilities"
documentation = "https://docs.rs/group/"
homepage = "https://github.com/zkcrypto/group"
repository = "https://github.com/zkcrypto/group"
edition = "2021"
[dependencies]
byteorder = { version = "1", optional = true, default-features = false }
ff = { version = "0.12", default-features = false }
rand = { version = "0.8", optional = true, default-features = false }
rand_core = { version = "0.6", default-features = false }
rand_xorshift = { version = "0.3", optional = true }
subtle = { version = "2.2.1", default-features = false }
[features]
default = ["alloc"]
alloc = ["byteorder"]
tests = ["alloc", "rand", "rand_xorshift"]
[badges]
maintenance = { status = "actively-developed" }