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