*.toml: reformat using tombi
This commit is contained in:
+24
-21
@@ -1,40 +1,43 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
resolver = "3"
|
resolver = "3"
|
||||||
members = [
|
members = [
|
||||||
"fix",
|
"fix",
|
||||||
"fix-bytecode",
|
"fix-bytecode",
|
||||||
"fix-compiler",
|
"fix-compiler",
|
||||||
"fix-error",
|
"fix-error",
|
||||||
"fix-lang",
|
"fix-lang",
|
||||||
"fix-runtime",
|
"fix-runtime",
|
||||||
"fix-vm",
|
"fix-vm",
|
||||||
]
|
]
|
||||||
|
|
||||||
[profile.profiling]
|
|
||||||
inherits = "release"
|
|
||||||
debug = true
|
|
||||||
|
|
||||||
[profile.lto]
|
|
||||||
inherits = "release"
|
|
||||||
lto = true
|
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
bumpalo = { version = "3.20", features = [
|
bumpalo = {
|
||||||
|
version = "3.20",
|
||||||
|
features = [
|
||||||
"allocator-api2",
|
"allocator-api2",
|
||||||
"boxed",
|
"boxed",
|
||||||
"collections",
|
"collections",
|
||||||
] }
|
]
|
||||||
|
}
|
||||||
|
ere = "0.2"
|
||||||
ghost-cell = "0.2"
|
ghost-cell = "0.2"
|
||||||
hashbrown = "0.16"
|
hashbrown = "0.16"
|
||||||
|
likely_stable = "0.1"
|
||||||
num_enum = "0.7.5"
|
num_enum = "0.7.5"
|
||||||
smallvec = { version = "1.15", features = ["const_new", "const_generics"] }
|
|
||||||
ere = "0.2"
|
|
||||||
string-interner = "0.19"
|
|
||||||
rnix = "0.14"
|
rnix = "0.14"
|
||||||
rowan = "0.16"
|
rowan = "0.16"
|
||||||
likely_stable = "0.1"
|
smallvec = { version = "1.15", features = ["const_generics", "const_new"] }
|
||||||
|
string-interner = "0.19"
|
||||||
|
|
||||||
[workspace.dependencies.gc-arena]
|
[workspace.dependencies.gc-arena]
|
||||||
git = "https://github.com/kyren/gc-arena"
|
git = "https://github.com/kyren/gc-arena"
|
||||||
rev = "75671ae03f53718357b741ed4027560f14e90836"
|
rev = "75671ae03f53718357b741ed4027560f14e90836"
|
||||||
features = ["allocator-api2", "hashbrown", "smallvec"]
|
features = ["allocator-api2", "hashbrown", "smallvec"]
|
||||||
|
|
||||||
|
[profile.lto]
|
||||||
|
inherits = "release"
|
||||||
|
lto = true
|
||||||
|
|
||||||
|
[profile.profiling]
|
||||||
|
inherits = "release"
|
||||||
|
debug = true
|
||||||
|
|||||||
@@ -5,13 +5,13 @@ edition = "2024"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bumpalo = { workspace = true }
|
bumpalo = { workspace = true }
|
||||||
|
colored = "3.1.1"
|
||||||
ghost-cell = { workspace = true }
|
ghost-cell = { workspace = true }
|
||||||
hashbrown = { workspace = true }
|
hashbrown = { workspace = true }
|
||||||
num_enum = { workspace = true }
|
num_enum = { workspace = true }
|
||||||
rnix = { workspace = true }
|
rnix = { workspace = true }
|
||||||
rowan = { workspace = true }
|
rowan = { workspace = true }
|
||||||
string-interner = { workspace = true }
|
string-interner = { workspace = true }
|
||||||
colored = "3.1.1"
|
|
||||||
|
|
||||||
fix-bytecode = { path = "../fix-bytecode" }
|
fix-bytecode = { path = "../fix-bytecode" }
|
||||||
fix-error = { path = "../fix-error" }
|
fix-error = { path = "../fix-error" }
|
||||||
|
|||||||
@@ -5,5 +5,5 @@ edition = "2024"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
miette = { version = "7.6", features = ["fancy"] }
|
miette = { version = "7.6", features = ["fancy"] }
|
||||||
thiserror = "2.0"
|
|
||||||
rnix = { workspace = true }
|
rnix = { workspace = true }
|
||||||
|
thiserror = "2.0"
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ version = "0.1.0"
|
|||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
ere = { workspace = true }
|
||||||
gc-arena = { workspace = true }
|
gc-arena = { workspace = true }
|
||||||
num_enum = { workspace = true }
|
num_enum = { workspace = true }
|
||||||
string-interner = { workspace = true }
|
string-interner = { workspace = true }
|
||||||
ere = { workspace = true }
|
|
||||||
|
|||||||
@@ -6,12 +6,12 @@ edition = "2024"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
gc-arena = { workspace = true }
|
gc-arena = { workspace = true }
|
||||||
hashbrown = { workspace = true }
|
hashbrown = { workspace = true }
|
||||||
|
likely_stable = { workspace = true }
|
||||||
num_enum = { workspace = true }
|
num_enum = { workspace = true }
|
||||||
smallvec = { workspace = true }
|
smallvec = { workspace = true }
|
||||||
string-interner = { workspace = true }
|
|
||||||
likely_stable = { workspace = true }
|
|
||||||
sptr = "0.3"
|
sptr = "0.3"
|
||||||
|
string-interner = { workspace = true }
|
||||||
|
|
||||||
fix-bytecode = { path = "../fix-bytecode" }
|
fix-bytecode = { path = "../fix-bytecode" }
|
||||||
fix-lang = { path = "../fix-lang" }
|
|
||||||
fix-error = { path = "../fix-error" }
|
fix-error = { path = "../fix-error" }
|
||||||
|
fix-lang = { path = "../fix-lang" }
|
||||||
|
|||||||
+5
-5
@@ -3,20 +3,20 @@ name = "fix-vm"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
[features]
|
|
||||||
tailcall = []
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gc-arena = { workspace = true }
|
gc-arena = { workspace = true }
|
||||||
hashbrown = { workspace = true }
|
hashbrown = { workspace = true }
|
||||||
|
likely_stable = { workspace = true }
|
||||||
num_enum = { workspace = true }
|
num_enum = { workspace = true }
|
||||||
smallvec = { workspace = true }
|
smallvec = { workspace = true }
|
||||||
string-interner = { workspace = true }
|
|
||||||
likely_stable = { workspace = true }
|
|
||||||
sptr = "0.3"
|
sptr = "0.3"
|
||||||
|
string-interner = { workspace = true }
|
||||||
sysinfo = { version = "0.38", default-features = false, features = ["system"] }
|
sysinfo = { version = "0.38", default-features = false, features = ["system"] }
|
||||||
|
|
||||||
fix-bytecode = { path = "../fix-bytecode" }
|
fix-bytecode = { path = "../fix-bytecode" }
|
||||||
fix-error = { path = "../fix-error" }
|
fix-error = { path = "../fix-error" }
|
||||||
fix-lang = { path = "../fix-lang" }
|
fix-lang = { path = "../fix-lang" }
|
||||||
fix-runtime = { path = "../fix-runtime" }
|
fix-runtime = { path = "../fix-runtime" }
|
||||||
|
|
||||||
|
[features]
|
||||||
|
tailcall = []
|
||||||
|
|||||||
+13
-13
@@ -3,6 +3,18 @@ name = "fix"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
|
[[bench]]
|
||||||
|
harness = false
|
||||||
|
name = "basic_ops"
|
||||||
|
|
||||||
|
[[bench]]
|
||||||
|
harness = false
|
||||||
|
name = "builtins"
|
||||||
|
|
||||||
|
[[bench]]
|
||||||
|
harness = false
|
||||||
|
name = "thunk_scope"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
mimalloc = "0.1"
|
mimalloc = "0.1"
|
||||||
|
|
||||||
@@ -17,9 +29,9 @@ clap = { version = "4", features = ["derive"] }
|
|||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
|
|
||||||
|
miette = { version = "7.4", features = ["fancy"] }
|
||||||
# Error Reporting
|
# Error Reporting
|
||||||
thiserror = "2"
|
thiserror = "2"
|
||||||
miette = { version = "7.4", features = ["fancy"] }
|
|
||||||
|
|
||||||
# Data Structure
|
# Data Structure
|
||||||
hashbrown = { workspace = true }
|
hashbrown = { workspace = true }
|
||||||
@@ -38,15 +50,3 @@ fix-vm = { path = "../fix-vm" }
|
|||||||
criterion = { version = "0.8", features = ["html_reports"] }
|
criterion = { version = "0.8", features = ["html_reports"] }
|
||||||
tempfile = "3.24"
|
tempfile = "3.24"
|
||||||
test-log = { version = "0.2", features = ["trace"] }
|
test-log = { version = "0.2", features = ["trace"] }
|
||||||
|
|
||||||
[[bench]]
|
|
||||||
name = "basic_ops"
|
|
||||||
harness = false
|
|
||||||
|
|
||||||
[[bench]]
|
|
||||||
name = "builtins"
|
|
||||||
harness = false
|
|
||||||
|
|
||||||
[[bench]]
|
|
||||||
name = "thunk_scope"
|
|
||||||
harness = false
|
|
||||||
|
|||||||
@@ -47,6 +47,7 @@
|
|||||||
just
|
just
|
||||||
samply
|
samply
|
||||||
tokei
|
tokei
|
||||||
|
tombi
|
||||||
|
|
||||||
# llm-agents.codex
|
# llm-agents.codex
|
||||||
llm-agents.claude-code
|
llm-agents.claude-code
|
||||||
|
|||||||
+2
-2
@@ -1,7 +1,7 @@
|
|||||||
[files]
|
[files]
|
||||||
extend-exclude = [
|
extend-exclude = [
|
||||||
"nix-js/tests/tests/regex.rs",
|
"nix-js/tests/tests/regex.rs",
|
||||||
"nix-js/tests/tests/lang",
|
"nix-js/tests/tests/lang",
|
||||||
]
|
]
|
||||||
|
|
||||||
[default.extend-words]
|
[default.extend-words]
|
||||||
|
|||||||
Reference in New Issue
Block a user