Files
powdr/analysis/Cargo.toml
2023-12-18 21:09:41 +01:00

23 lines
540 B
TOML

[package]
name = "analysis"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ast = { path = "../ast" }
itertools = "^0.10"
log = "0.4.18"
number = { path = "../number" }
parser = { path = "../parser" }
asm_to_pil = { path = "../asm_to_pil" }
type_check = { path = "../type_check" }
[dev-dependencies]
parser = { path = "../parser" }
importer = { path = "../importer" }
pretty_assertions = "1.3.0"
test-log = "0.2.12"
env_logger = "0.10.0"