chore: format with updated rustfmt and taplo rules

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ie9ef5fc421fa20071946cf1073f7920c6a6a6964
This commit is contained in:
raf 2026-02-02 02:23:50 +03:00
commit c306383d27
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
72 changed files with 11217 additions and 10487 deletions

View file

@ -1,9 +1,9 @@
[package]
name = "fc-migrate-cli"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
name = "fc-migrate-cli"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
[[bin]]
@ -11,8 +11,8 @@ name = "fc-migrate"
path = "src/main.rs"
[dependencies]
fc-common = { path = "../common" }
clap.workspace = true
anyhow.workspace = true
anyhow.workspace = true
clap.workspace = true
fc-common = { path = "../common" }
tokio.workspace = true
tracing-subscriber.workspace = true
tokio.workspace = true

View file

@ -4,5 +4,5 @@ use fc_common::migrate_cli::run;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
run().await
run().await
}