mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
19 lines
411 B
TOML
19 lines
411 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 = { version = "0.1.0", path = "../number" }
|
|
|
|
[dev-dependencies]
|
|
parser = { path = "../parser" }
|
|
pretty_assertions = "1.3.0"
|
|
test-log = "0.2.12"
|
|
env_logger = "0.10.0"
|