Cargo.toml
1 [package] 2 name = "alphavm-circuit-algorithms" 3 version = "0.2.0" 4 authors = [ "The Alpha Team <hello@alpha.org>" ] 5 description = "Algorithm circuit library for a decentralized virtual machine" 6 homepage = "https://alpha.org" 7 repository = "https://github.com/ProvableHQ/alphavm" 8 license = "Apache-2.0" 9 edition = "2024" 10 11 [dependencies.alphavm-console-algorithms] 12 workspace = true 13 14 [dependencies.alphavm-circuit-types] 15 workspace = true 16 17 [dependencies.alphavm-fields] 18 workspace = true 19 20 [dev-dependencies.anyhow] 21 workspace = true 22 23 [dev-dependencies.alphavm-curves] 24 workspace = true 25 26 [dev-dependencies.alphavm-utilities] 27 workspace = true