-
Notifications
You must be signed in to change notification settings - Fork 256
/
Cargo.toml
37 lines (33 loc) · 1.01 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
[package]
name = "ark-serialize"
description = "A library for serializing types in the arkworks ecosystem"
documentation = "https://docs.rs/ark-serialize/"
version.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
categories.workspace = true
include.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
metadata.docs.rs.workspace = true
package.metadata.release.workspace = true
keywords = ["cryptography", "serialization" ]
[dependencies]
ark-serialize-derive = { workspace = true, optional = true }
ark-std.workspace = true
arrayvec.workspace = true
digest.workspace = true
num-bigint.workspace = true
rayon = { workspace = true, optional = true }
[dev-dependencies]
sha2.workspace = true
sha3.workspace = true
blake2.workspace = true
ark-test-curves = { workspace = true, default-features = false, features = [ "bls12_381_curve"] }
[features]
default = []
parallel = [ "rayon" ]
std = [ "ark-std/std" ]
derive = [ "ark-serialize-derive" ]