/ curves / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "deltavm-curves"
 3  version = "0.2.0"
 4  authors = [ "The Alpha Team <hello@delta.org>" ]
 5  description = "Curves for a decentralized virtual machine"
 6  homepage = "https://delta.org"
 7  repository = "https://github.com/ProvableHQ/deltavm"
 8  keywords = [
 9    "alpha",
10    "cryptography",
11    "blockchain",
12    "decentralized",
13    "zero-knowledge"
14  ]
15  categories = [
16    "compilers",
17    "cryptography",
18    "mathematics",
19    "wasm",
20    "web-programming"
21  ]
22  include = [
23    "Cargo.toml",
24    "src",
25    "README.md",
26    "LICENSE.md",
27    "documentation/"
28  ]
29  license = "Apache-2.0"
30  edition = "2024"
31  
32  [[bench]]
33  name = "curves"
34  path = "benches/curves.rs"
35  harness = false
36  
37  [dependencies.deltavm-fields]
38  workspace = true
39  default-features = false
40  
41  [dependencies.deltavm-utilities]
42  workspace = true
43  
44  [dependencies.rand]
45  workspace = true
46  
47  [dependencies.rayon]
48  workspace = true
49  
50  [dependencies.serde]
51  workspace = true
52  features = [ "derive" ]
53  
54  [dependencies.thiserror]
55  workspace = true
56  
57  [dev-dependencies.bincode]
58  workspace = true
59  
60  [dev-dependencies.criterion]
61  workspace = true
62  
63  [dev-dependencies.rand]
64  workspace = true
65  
66  [build-dependencies]
67  rustc_version = "0.4"
68  
69  [features]
70  serial = [ "deltavm-fields/serial" ]
71  dev-print = [ "deltavm-utilities/dev-print" ]