21 lines
504 B
TOML
21 lines
504 B
TOML
[package]
|
|
name = "fix-compiler"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bumpalo = { workspace = true }
|
|
ghost-cell = { workspace = true }
|
|
hashbrown = { workspace = true }
|
|
num_enum = { workspace = true }
|
|
rnix = { workspace = true }
|
|
rowan = { workspace = true }
|
|
string-interner = { workspace = true }
|
|
colored = "3.1.1"
|
|
|
|
fix-bytecode = { path = "../fix-bytecode" }
|
|
fix-error = { path = "../fix-error" }
|
|
fix-lang = { path = "../fix-lang" }
|
|
fix-runtime = { path = "../fix-runtime" }
|
|
tracing = "0.1"
|