931af90789
- implemented type parsing including custom types and generics (useless for now as we do no semantic analysis) - implemented struct literal parsing - implemented struct definition parsing (no generics yet) - implemented tuple parsing - registers are now allocated starting from zero - updated to-dos
19 lines
288 B
TOML
19 lines
288 B
TOML
[package]
|
|
name = "assembler"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
|
|
[[bin]]
|
|
name = "assembler"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "assembler"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
common = { path = "../common" }
|
|
num_cpus = "1.17.0"
|
|
threadpool = "1.8.1"
|