Cargo.toml
1 [package] 2 name = "alphavm-ledger-committee" 3 version = "0.3.0" 4 authors = [ "The Alpha Team <hello@alpha.org>" ] 5 description = "A committee for 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 = "2021" 25 26 [features] 27 default = [ ] 28 serial = [ "alphavm-console/serial" ] 29 wasm = [ "alphavm-console/wasm" ] 30 metrics = [ "dep:alphavm-metrics" ] 31 prop-tests = [ "rand", "rand_chacha", "test-strategy", "proptest", "anyhow" ] 32 test-helpers = [ "prop-tests", "rand_distr" ] 33 34 [dependencies.alphavm-console] 35 workspace = true 36 features = [ "program" ] 37 38 [dependencies.alphavm-ledger-narwhal-batch-header] 39 workspace = true 40 41 [dependencies.indexmap] 42 workspace = true 43 features = [ "serde", "rayon" ] 44 45 [dependencies.alphavm-metrics] 46 workspace = true 47 optional = true 48 49 [dependencies.serde_json] 50 workspace = true 51 features = [ "preserve_order" ] 52 53 [dependencies.anyhow] 54 workspace = true 55 optional = true 56 57 [dependencies.proptest] 58 version = "1.0.0" 59 optional = true 60 61 [dependencies.rand] 62 workspace = true 63 optional = true 64 65 [dependencies.rand_chacha] 66 workspace = true 67 optional = true 68 69 [dependencies.rand_distr] 70 version = "0.4" 71 optional = true 72 73 [dependencies.rayon] 74 workspace = true 75 76 [dependencies.test-strategy] 77 version = "0.3.1" 78 optional = true 79 80 [dev-dependencies.bincode] 81 workspace = true 82 83 [dev-dependencies.parking_lot] 84 workspace = true 85 86 [dev-dependencies.rand_distr] 87 version = "0.4" 88 89 [dev-dependencies.rayon] 90 workspace = true 91 92 [dev-dependencies.alphavm-ledger-committee] 93 path = "." 94 features = [ "prop-tests" ]