Path: blob/main/cranelift/isle/veri/veri_engine/Cargo.toml
1692 views
[package]1name = "veri_engine"2license = "Apache-2.0 WITH LLVM-exception"3authors = ["Alexa VanHattum", "Monica Pardeshi", "Michael McLoughlin", "Wellesley Programming Systems Lab"]4version = "0.1.0"5edition = "2021"6publish = false78# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html910[lib]11name = "veri_engine_lib"12path = "src/lib.rs"1314[[bin]]15name = "crocus"16path = "src/main.rs"1718[dependencies]19cranelift-isle = { path = "../../isle" }20cranelift-codegen = { path = "../../../codegen", features = ["all-arch"] }21cranelift-codegen-meta = { path = "../../../codegen/meta" }22veri_ir = { path = "../veri_ir" }23easy-smt = "0.2.2"24clap = { workspace = true }25itertools = { workspace = true }26log = { workspace = true }27env_logger = { workspace = true }28anyhow = { workspace = true }2930[dev-dependencies]31strum = "0.24.0"32strum_macros = "0.24.0"333435