mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
25 lines
598 B
TOML
25 lines
598 B
TOML
[package]
|
|
name = "compiler"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
backend = { path = "../backend" }
|
|
itertools = "^0.10"
|
|
log = "0.4.17"
|
|
mktemp = "0.5.0"
|
|
number = { path = "../number" }
|
|
parser_util = { path = "../parser_util" }
|
|
parser = { path = "../parser" }
|
|
executor = { path = "../executor" }
|
|
asm_to_pil = { path = "../asm_to_pil" }
|
|
pil_analyzer = { path = "../pil_analyzer" }
|
|
halo2 = { path = "../halo2" }
|
|
json = "^0.12"
|
|
ast = { version = "0.1.0", path = "../ast" }
|
|
analysis = { version = "0.1.0", path = "../analysis" }
|
|
|
|
[dev-dependencies]
|
|
test-log = "0.2.12"
|
|
env_logger = "0.10.0"
|