uwucc/Cargo.toml
Nilstrieb d0be270de2 first working code
```
int main() {
    long a = 0;
}
```

codegens correctly.
2023-05-28 18:52:51 +02:00

17 lines
443 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"] }
ariadne = "0.2.0"