mirror of
https://github.com/Noratrieb/uwucc.git
synced 2026-01-14 08:35:08 +01:00
16 lines
425 B
TOML
16 lines
425 B
TOML
[workspace]
|
|
members = [".", "./parser", "./analysis", "./codegen"]
|
|
|
|
[package]
|
|
name = "uwucc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bumpalo = "3.10.0"
|
|
analysis = { path = "./analysis" }
|
|
codegen = { path = "./codegen" }
|
|
parser = { path = "./parser" }
|
|
dbg-pls = { version = "0.3.2", features = ["derive", "colors"] }
|