Cargo.toml
1 [package] 2 name = "alphavm-circuit-types-boolean" 3 version = "0.2.0" 4 authors = [ "The Alpha Team <hello@alpha.org>" ] 5 description = "Boolean circuit 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 [[bench]] 12 name = "and" 13 path = "benches/and.rs" 14 harness = false 15 16 [dependencies.alphavm-console-types-boolean] 17 workspace = true 18 19 [dependencies.alphavm-circuit-environment] 20 workspace = true 21 22 [dev-dependencies.criterion] 23 workspace = true