treefmt: add taplo (toml) formatter
This commit is contained in:
parent
b0fb623e08
commit
22b65d35f3
2 changed files with 11 additions and 6 deletions
16
Cargo.toml
16
Cargo.toml
|
|
@ -1,10 +1,6 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
resolver = "3"
|
resolver = "3"
|
||||||
members = [
|
members = ["hive-ag3nt", "hive-c0re", "hive-sh4re"]
|
||||||
"hive-ag3nt",
|
|
||||||
"hive-c0re",
|
|
||||||
"hive-sh4re",
|
|
||||||
]
|
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
@ -25,6 +21,14 @@ hive-sh4re = { path = "hive-sh4re" }
|
||||||
rusqlite = { version = "0.37", features = ["bundled"] }
|
rusqlite = { version = "0.37", features = ["bundled"] }
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
tokio = { version = "1", features = ["io-util", "macros", "net", "process", "rt-multi-thread", "signal", "time"] }
|
tokio = { version = "1", features = [
|
||||||
|
"io-util",
|
||||||
|
"macros",
|
||||||
|
"net",
|
||||||
|
"process",
|
||||||
|
"rt-multi-thread",
|
||||||
|
"signal",
|
||||||
|
"time",
|
||||||
|
] }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,7 @@
|
||||||
keep-sorted.enable = true;
|
keep-sorted.enable = true;
|
||||||
nixfmt.enable = true;
|
nixfmt.enable = true;
|
||||||
rustfmt.enable = true;
|
rustfmt.enable = true;
|
||||||
|
taplo.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
forAllSystems =
|
forAllSystems =
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue