From 5e2f71c08be422afd72161d0fd6b7d0936d7f7fb Mon Sep 17 00:00:00 2001 From: Kaya Gokalp Date: Wed, 11 Dec 2024 23:05:58 -0800 Subject: [PATCH] chore: lint --- forc-plugins/forc-node/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/forc-plugins/forc-node/Cargo.toml b/forc-plugins/forc-node/Cargo.toml index 929b89c3657..5f8b6762a45 100644 --- a/forc-plugins/forc-node/Cargo.toml +++ b/forc-plugins/forc-node/Cargo.toml @@ -10,18 +10,18 @@ repository.workspace = true [dependencies] anyhow.workspace = true clap = { workspace = true, features = ["derive", "string"] } +dialoguer.workspace = true forc-tracing.workspace = true forc-util.workspace = true include_dir.workspace = true -tokio = { workspace = true, features = ["macros", "signal", "rt-multi-thread"] } -dialoguer.workspace = true +reqwest = { workspace = true, features = ["json"] } +semver.workspace = true serde.workspace = true serde_json.workspace = true -semver.workspace = true -reqwest = { workspace = true, features = ["json"] } sha1.workspace = true +tokio = { workspace = true, features = ["macros", "signal", "rt-multi-thread"] } [dev-dependencies] -wiremock = "0.5" tempfile.workspace = true tokio = { workspace = true, features = ["full"] } +wiremock = "0.5"