From 2c4b098cee8b50ed77f78fc66b0eec40adb238dc Mon Sep 17 00:00:00 2001 From: polydez <155382956+polydez@users.noreply.github.com> Date: Fri, 18 Oct 2024 20:11:28 +0500 Subject: [PATCH] fix: remove `macros` feature from axum dependency --- Cargo.lock | 12 ------------ bin/faucet/Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9958a561..5a290bb6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,7 +191,6 @@ checksum = "504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae" dependencies = [ "async-trait", "axum-core", - "axum-macros", "bytes", "futures-util", "http", @@ -239,17 +238,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "axum-macros" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "backtrace" version = "0.3.74" diff --git a/bin/faucet/Cargo.toml b/bin/faucet/Cargo.toml index b4fa4715..2d047d95 100644 --- a/bin/faucet/Cargo.toml +++ b/bin/faucet/Cargo.toml @@ -18,7 +18,7 @@ testing = ["miden-objects/testing", "miden-lib/testing"] [dependencies] anyhow = "1.0" -axum = { version = "0.7", features = ["tokio", "macros"] } +axum = { version = "0.7", features = ["tokio"] } clap = { version = "4.5", features = ["derive", "string"] } figment = { version = "0.10", features = ["toml", "env"] } http = "1.1"