/ ledger / narwhal / batch-header / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "alphavm-ledger-narwhal-batch-header"
 3  version = "0.2.0"
 4  authors = [ "The Alpha Team <hello@alpha.org>" ]
 5  description = "A batch header for a Narwhal-style memory pool in a decentralized virtual machine"
 6  homepage = "https://alpha.org"
 7  repository = "https://github.com/ProvableHQ/alphavm"
 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 = [ "Cargo.toml", "src", "README.md", "LICENSE.md" ]
23  license = "Apache-2.0"
24  edition = "2024"
25  
26  [features]
27  default = [ "rayon" ]
28  serial = [ "alphavm-console/serial" ]
29  wasm = [ "alphavm-console/wasm" ]
30  test-helpers = [ "alphavm-ledger-narwhal-transmission-id/test-helpers", "time" ]
31  
32  [dependencies.alphavm-console]
33  workspace = true
34  
35  [dependencies.alphavm-ledger-narwhal-transmission-id]
36  workspace = true
37  
38  [dependencies.indexmap]
39  workspace = true
40  features = [ "serde" ]
41  
42  [dependencies.rayon]
43  workspace = true
44  optional = true
45  
46  [dependencies.serde_json]
47  workspace = true
48  features = [ "preserve_order" ]
49  
50  [dependencies.time]
51  workspace = true
52  optional = true
53  
54  [dev-dependencies.bincode]
55  workspace = true
56  
57  [dev-dependencies.alphavm-ledger-narwhal-batch-header]
58  path = "."
59  features = [ "test-helpers" ]