Cargo.toml
1 [package] 2 name = "alphavm-ledger-test-helpers" 3 version = "4.4.0" 4 authors = [ "The Aleo Team <hello@aleo.org>" ] 5 description = "Test helpers for a decentralized virtual machine" 6 homepage = "https://aleo.org" 7 repository = "https://github.com/ProvableHQ/snarkVM" 8 keywords = [ 9 "aleo", 10 "cryptography", 11 "blockchain", 12 "decentralized", 13 "zero-knowledge" 14 ] 15 categories = [ "cryptography", "web-programming" ] 16 license = "Apache-2.0" 17 edition = "2024" 18 19 [dependencies.alphavm-algorithms] 20 workspace = true 21 22 [dependencies.alphavm-console] 23 workspace = true 24 features = ["filesystem"] 25 26 [dependencies.alphavm-circuit] 27 workspace = true 28 29 [dependencies.alphavm-ledger-block] 30 workspace = true 31 32 [dependencies.alphavm-ledger-query] 33 workspace = true 34 features = [ "query" ] 35 36 [dependencies.alphavm-ledger-store] 37 workspace = true 38 39 [dependencies.alphavm-synthesizer-program] 40 workspace = true 41 42 [dependencies.alphavm-synthesizer-process] 43 workspace = true 44 45 [dependencies.alphavm-utilities] 46 workspace = true 47 48 [dependencies.alpha-std] 49 workspace = true 50 features = [ "storage" ] 51 52 [dependencies.anyhow] 53 workspace = true