Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/isle/veri/veri_engine/Cargo.toml
1692 views
1
[package]
2
name = "veri_engine"
3
license = "Apache-2.0 WITH LLVM-exception"
4
authors = ["Alexa VanHattum", "Monica Pardeshi", "Michael McLoughlin", "Wellesley Programming Systems Lab"]
5
version = "0.1.0"
6
edition = "2021"
7
publish = false
8
9
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
10
11
[lib]
12
name = "veri_engine_lib"
13
path = "src/lib.rs"
14
15
[[bin]]
16
name = "crocus"
17
path = "src/main.rs"
18
19
[dependencies]
20
cranelift-isle = { path = "../../isle" }
21
cranelift-codegen = { path = "../../../codegen", features = ["all-arch"] }
22
cranelift-codegen-meta = { path = "../../../codegen/meta" }
23
veri_ir = { path = "../veri_ir" }
24
easy-smt = "0.2.2"
25
clap = { workspace = true }
26
itertools = { workspace = true }
27
log = { workspace = true }
28
env_logger = { workspace = true }
29
anyhow = { workspace = true }
30
31
[dev-dependencies]
32
strum = "0.24.0"
33
strum_macros = "0.24.0"
34
35