/ console / collections / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "alphavm-console-collections"
 3  version = "0.3.0"
 4  authors = [ "The Alpha Team <hello@alpha.org>" ]
 5  description = "Collections for a decentralized virtual machine"
 6  homepage = "https://alpha.org"
 7  repository = "https://github.com/ProvableHQ/alphavm"
 8  license = "Apache-2.0"
 9  edition = "2021"
10  
11  [[bench]]
12  name = "kary_merkle_tree"
13  path = "benches/kary_merkle_tree.rs"
14  harness = false
15  
16  [[bench]]
17  name = "merkle_tree"
18  path = "benches/merkle_tree.rs"
19  harness = false
20  
21  [dependencies.alphavm-console-algorithms]
22  workspace = true
23  
24  [dependencies.alphavm-console-types]
25  workspace = true
26  features = [ "field", "integers" ]
27  
28  [dependencies.acdc-std]
29  workspace = true
30  
31  [dependencies.rayon]
32  workspace = true
33  
34  [dependencies.serde]
35  workspace = true
36  
37  [dev-dependencies.alphavm-console-network]
38  path = "../network"
39  
40  [dev-dependencies.criterion]
41  workspace = true
42  
43  [dev-dependencies.indexmap]
44  workspace = true
45  
46  [features]
47  serial = [ ]
48  timer = [ "acdc-std/timer" ]