43 lines
759 B
TOML
43 lines
759 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = [
|
|
"fix",
|
|
"fix-bytecode",
|
|
"fix-compiler",
|
|
"fix-error",
|
|
"fix-lang",
|
|
"fix-runtime",
|
|
"fix-vm",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
bumpalo = {
|
|
version = "3.20",
|
|
features = [
|
|
"allocator-api2",
|
|
"boxed",
|
|
"collections",
|
|
]
|
|
}
|
|
ere = "0.2"
|
|
ghost-cell = "0.2"
|
|
hashbrown = "0.16"
|
|
num_enum = "0.7.5"
|
|
rnix = "0.14"
|
|
rowan = "0.16"
|
|
smallvec = { version = "1.15", features = ["const_generics", "const_new"] }
|
|
string-interner = "0.19"
|
|
|
|
[workspace.dependencies.gc-arena]
|
|
git = "https://github.com/kyren/gc-arena"
|
|
rev = "75671ae03f53718357b741ed4027560f14e90836"
|
|
features = ["allocator-api2", "hashbrown", "smallvec"]
|
|
|
|
[profile.lto]
|
|
inherits = "release"
|
|
lto = true
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = true
|