[package] name = "acir" description = "ACIR is the IR that the VM processes, it is analogous to LLVM IR" # x-release-please-start-version version = "0.46.0" # x-release-please-end authors.workspace = true edition.workspace = true license.workspace = true rust-version.workspace = true repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] acir_field.workspace = true brillig.workspace = true serde.workspace = true thiserror.workspace = true flate2.workspace = true bincode.workspace = true base64.workspace = true serde-big-array = "0.5.1" [dev-dependencies] serde_json = "1.0" strum = "0.24" strum_macros = "0.24" serde-reflection = "0.3.6" serde-generate = "0.25.1" fxhash.workspace = true criterion.workspace = true pprof.workspace = true [features] default = ["bn254"] bn254 = ["acir_field/bn254", "brillig/bn254"] bls12_381 = ["acir_field/bls12_381", "brillig/bls12_381"] [[bench]] name = "serialization" harness = false