13 lines
372 B
TOML
13 lines
372 B
TOML
[package]
|
|
name = "leaf_compiler"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
leaf_parser = { path = "../parser" }
|
|
leaf_assembly = { path = "../assembly" }
|
|
leaf_allocators = { path = "../allocators" }
|
|
arcstr = "1.2.0"
|
|
derive_more = { version = "2.0.1", features = ["deref", "deref_mut", "debug", "display", "try_from", "from", "try_into", "into"] }
|
|
fxhash = "0.2.1"
|