difftreelog
style reformat remaining tomls
in: trunk
4 files changed
cmds/fleet/Cargo.tomldiffbeforeafterboth1[package]2name = "fleet"3description = "NixOS configuration management"4version = "0.2.0"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6edition.workspace = true7rust-version.workspace = true89[dependencies]10nixlike.workspace = true11better-command.workspace = true12tokio.workspace = true13clap.workspace = true14clap_complete.workspace = true15age = { workspace = true, features = ["armor"] }16anyhow.workspace = true17tracing.workspace = true18tracing-subscriber.workspace = true19serde.workspace = true20serde_json.workspace = true21tempfile.workspace = true22time = { version = "0.3", features = ["serde"] }23hostname = "0.4.0"24age-core = "0.11"25peg = "0.8"26base64 = "0.22.1"27chrono = { version = "0.4", features = ["serde"] }28tokio-util = { version = "0.7", features = ["codec"] }29async-trait = "0.1"30futures = "0.3"31itertools = "0.13"32shlex = "1.3"33tabled = { version = "0.16" }34owo-colors = { version = "4.0", features = [35 "supports-color",36 "supports-colors",37] }38abort-on-drop = "0.2"39regex = "1.10"40openssh = "0.11"41crossterm = { version = "0.28.0", features = ["use-dev-tty"] }42fleet-shared.workspace = true4344tracing-indicatif = { version = "0.3", optional = true }45human-repr = { version = "1.1", optional = true }46indicatif = { version = "0.17", optional = true }47nix-eval.workspace = true48nom = "7.1.3"49fleet-base = { version = "0.1.0", path = "../../crates/fleet-base" }5051[features]52default = ["indicatif"]53# Not quite stable54indicatif = [55 "dep:tracing-indicatif",56 "dep:indicatif",57 "dep:human-repr",58 "better-command/indicatif",59]1[package]2name = "fleet"3description = "NixOS configuration management"4version = "0.2.0"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6edition.workspace = true7rust-version.workspace = true89[dependencies]10age = { workspace = true, features = ["armor"] }11anyhow.workspace = true12better-command.workspace = true13clap.workspace = true14clap_complete.workspace = true15fleet-shared.workspace = true16nix-eval.workspace = true17nixlike.workspace = true18serde.workspace = true19serde_json.workspace = true20tempfile.workspace = true21tokio.workspace = true22tracing.workspace = true23tracing-subscriber.workspace = true2425abort-on-drop = "0.2"26age-core = "0.11"27async-trait = "0.1"28base64 = "0.22.1"29chrono = { version = "0.4", features = ["serde"] }30crossterm = { version = "0.28.0", features = ["use-dev-tty"] }31futures = "0.3"32hostname = "0.4.0"33itertools = "0.13"34openssh = "0.11"35owo-colors = { version = "4.0", features = ["supports-color", "supports-colors"] }36peg = "0.8"37regex = "1.10"38shlex = "1.3"39tabled = { version = "0.16" }40time = { version = "0.3", features = ["serde"] }41tokio-util = { version = "0.7", features = ["codec"] }4243fleet-base = { version = "0.1.0", path = "../../crates/fleet-base" }44human-repr = { version = "1.1", optional = true }45indicatif = { version = "0.17", optional = true }46nom = "7.1.3"47tracing-indicatif = { version = "0.3", optional = true }4849[features]50default = ["indicatif"]51# Not quite stable52indicatif = [53 "dep:tracing-indicatif",54 "dep:indicatif",55 "dep:human-repr",56 "better-command/indicatif",57]cmds/generator-helper/Cargo.tomldiffbeforeafterboth--- a/cmds/generator-helper/Cargo.toml
+++ b/cmds/generator-helper/Cargo.toml
@@ -7,10 +7,11 @@
[dependencies]
age.workspace = true
anyhow.workspace = true
-base64 = "0.22.1"
clap.workspace = true
-ed25519-dalek = { version = "2.1", features = ["rand_core"] }
fleet-shared.workspace = true
+
+base64 = "0.22.1"
+ed25519-dalek = { version = "2.1", features = ["rand_core"] }
hex = "0.4.3"
rand = "0.8.5"
x25519-dalek = "2.0.1"
cmds/terraform-provider-fleet/Cargo.tomldiffbeforeafterboth--- a/cmds/terraform-provider-fleet/Cargo.toml
+++ b/cmds/terraform-provider-fleet/Cargo.toml
@@ -6,7 +6,8 @@
[dependencies]
anyhow.workspace = true
-async-trait = "0.1.81"
serde = { workspace = true, features = ["derive"] }
-tf-provider = "0.2.2"
tokio.workspace = true
+
+async-trait = "0.1.81"
+tf-provider = "0.2.2"
taplo.tomldiffbeforeafterboth--- a/taplo.toml
+++ b/taplo.toml
@@ -1,7 +1,5 @@
[formatting]
-inline_table_expand = false
indent_string = "\t"
-array_auto_expand = false
[[rule]]
include = ["**/Cargo.toml"]