ci: Format toml files

... using taplo with default settings

I tried this with 4 spaces indentation, but the patch is almost as
big as this one, so I went with default settings instead as that
is just easier:-)
This commit is contained in:
Tobias Hunger 2025-03-29 20:54:46 +00:00
parent 51f7834f56
commit cd6f2e2cf2
65 changed files with 1050 additions and 462 deletions

View file

@ -17,7 +17,13 @@ publish = false
crate-type = ["cdylib"]
[dependencies]
slint-interpreter = { workspace = true, features = ["std", "backend-winit", "renderer-femtovg", "compat-1-2", "internal"] }
slint-interpreter = { workspace = true, features = [
"std",
"backend-winit",
"renderer-femtovg",
"compat-1-2",
"internal",
] }
send_wrapper = { workspace = true }
vtable = { workspace = true }
@ -26,7 +32,13 @@ console_error_panic_hook = { version = "0.1.6", optional = true }
js-sys = "0.3.44"
wasm-bindgen-futures = { version = "0.4.18" }
wasm-bindgen = { version = "0.2.66" }
web-sys = { workspace = true, features = ["Request", "RequestInit", "RequestMode", "Response", "Window"] }
web-sys = { workspace = true, features = [
"Request",
"RequestInit",
"RequestMode",
"Response",
"Window",
] }
#[dev-dependencies]
#wasm-bindgen-test = "0.3.13"