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