/ ledger / validator / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "alphavm-ledger-validator"
 3  version = "0.1.0"
 4  authors = ["ADnet Contributors <dev@adnet.io>"]
 5  description = "Validator staking and CLP (Continuous Liveness Proof) for ALPHA chain"
 6  homepage = "https://adnet.io"
 7  repository = "https://github.com/BlockBlox-MD/alphavm"
 8  keywords = [
 9    "adnet",
10    "cryptography",
11    "blockchain",
12    "validator",
13    "staking"
14  ]
15  categories = [
16    "cryptography",
17    "web-programming"
18  ]
19  include = ["Cargo.toml", "src", "README.md", "LICENSE.md"]
20  license = "Apache-2.0"
21  edition = "2021"
22  
23  [features]
24  default = []
25  serial = ["alphavm-console/serial"]
26  wasm = ["alphavm-console/wasm"]
27  
28  [dependencies.alphavm-console]
29  workspace = true
30  features = ["program", "types"]
31  
32  [dependencies.alphavm-ledger-governor]
33  workspace = true
34  
35  [dependencies.serde]
36  workspace = true
37  features = ["derive"]
38  
39  [dependencies.anyhow]
40  workspace = true
41  
42  [dependencies.indexmap]
43  workspace = true
44  features = ["serde"]
45  
46  [dev-dependencies.rand]
47  workspace = true