Files

15 lines
443 B
TOML
Raw Permalink Normal View History

2026-02-26 19:40:27 +01:00
[package]
name = "leaf_compiler"
version = "0.1.0"
edition = "2024"
[dependencies]
leaf_parser = { path = "../parser" }
leaf_assembly = { path = "../assembly" }
leaf_allocators = { path = "../allocators" }
2026-03-06 15:21:44 +01:00
leaf_backend_llvm = { path = "../backends/llvm" }
2026-02-26 19:40:27 +01:00
arcstr = "1.2.0"
2026-02-27 15:48:16 +01:00
derive_more = { version = "2.0.1", features = ["deref", "deref_mut", "debug", "display", "try_from", "from", "try_into", "into"] }
fxhash = "0.2.1"
2026-03-06 15:21:44 +01:00
itertools = "0.14.0"