Skip to content

Commit

Permalink
taplo format
Browse files Browse the repository at this point in the history
Signed-off-by: Brian L. Troutwine <[email protected]>
  • Loading branch information
blt committed Nov 12, 2024
1 parent 6d47364 commit 8356ad3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ serde_json = { version = "1.0", features = ["std"] }
thiserror = { version = "1.0" }
tokio = { version = "1.41" }
tracing = { version = "0.1" }
uuid = { version = "1.11", default-features = false, features = ["v4", "serde"] }
uuid = { version = "1.11", default-features = false, features = [
"v4",
"serde",
] }
once_cell = { version = "1.20" }

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ version = 2
ignore = [
# atty is unsound for some custom allocators on Windows and is unmaintained
"RUSTSEC-2021-0145",
"RUSTSEC-2024-0370" # proc-macro-error is unmaintained
"RUSTSEC-2024-0370", # proc-macro-error is unmaintained
]

[bans]
Expand Down
2 changes: 1 addition & 1 deletion lading_signal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ loom = { version = "0.7", features = ["futures", "checkpoint"] }
doctest = false

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] }
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] }
2 changes: 1 addition & 1 deletion lading_throttle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ tokio = { workspace = true, features = ["time"] }
doctest = false

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(kani)'] }
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(kani)'] }

0 comments on commit 8356ad3

Please sign in to comment.