fmt: add tombi format, run just fmt again

This commit is contained in:
2026-06-05 09:19:23 +02:00
parent 06398fe298
commit febde452fb
13 changed files with 96 additions and 91 deletions
+12 -12
View File
@@ -3,14 +3,12 @@ name = "lanspread-peer-cli"
version = "0.1.0"
edition = "2024"
[lints.rust]
unsafe_code = "forbid"
[lib]
doctest = false
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
todo = "warn"
unwrap_used = "warn"
needless_pass_by_value = "allow"
[[bin]]
name = "lanspread-peer-cli"
path = "src/main.rs"
[dependencies]
lanspread-compat = { path = "../lanspread-compat" }
@@ -22,9 +20,11 @@ serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
[lib]
doctest = false
[lints.clippy]
needless_pass_by_value = "allow"
pedantic = { level = "warn", priority = -1 }
todo = "warn"
unwrap_used = "warn"
[[bin]]
name = "lanspread-peer-cli"
path = "src/main.rs"
[lints.rust]
unsafe_code = "forbid"