fix(toml): drop align_entries = true from .taplo.toml

This key was being applied inconsistently depending on nesting level.
This commit is contained in:
Will Lillis 2026-08-29 04:36:06 -04:00 committed by Christian Clason
parent 7a2dd61a7c
commit d9cb739430
18 changed files with 291 additions and 291 deletions

View file

@ -1,5 +1,4 @@
[formatting]
align_entries = true
column_width = 100
compact_arrays = false
reorder_inline_tables = true

View file

@ -130,7 +130,7 @@ webbrowser = "1.2.1"
tree-sitter = { path = "./lib", version = "0.27.0" }
tree-sitter-config = { path = "./crates/config", version = "0.27.0" }
tree-sitter-generate = { path = "./crates/generate", version = "0.27.0", default-features = false }
tree-sitter-generate = { default-features = false, path = "./crates/generate", version = "0.27.0" }
tree-sitter-highlight = { path = "./crates/highlight", version = "0.27.0" }
tree-sitter-loader = { path = "./crates/loader", version = "0.27.0" }
tree-sitter-tags = { path = "./crates/tags", version = "0.27.0" }

View file

@ -124,6 +124,7 @@ lint:
cargo update --workspace --locked --quiet
cargo fmt --all --check
cargo clippy --workspace --all-targets -- -D warnings
taplo format --check
lint-web:
npm --prefix lib/binding_web ci

View file

@ -68,7 +68,7 @@ webbrowser.workspace = true
tree-sitter.workspace = true
tree-sitter-config.workspace = true
tree-sitter-generate = { workspace = true, features = ["load"] }
tree-sitter-generate = { features = [ "load" ], workspace = true }
tree-sitter-highlight.workspace = true
tree-sitter-loader.workspace = true
tree-sitter-tags.workspace = true

View file

@ -47,11 +47,11 @@ streaming-iterator = "0.1.9"
tree-sitter-language.workspace = true
[dependencies.wasmtime-c-api]
version = "48.0.1"
default-features = false
features = [ "cranelift", "gc", "gc-null" ]
optional = true
package = "wasmtime-c-api-impl"
version = "48.0.1"
[build-dependencies]
bindgen = { optional = true, version = "0.72.1" }

View file

@ -6,8 +6,8 @@ rust-version = "1.90"
publish = false
[lib]
crate-type = [ "cdylib" ]
path = "src/rust_wasm_web.rs"
crate-type = ["cdylib"]
[dependencies]
tree-sitter = { path = "../../../lib" }