fix some unused_crate_dependencies lint warns

Signed-off-by: June Strawberry <june@vern.cc>
This commit is contained in:
June Strawberry
2026-01-15 17:01:38 -05:00
parent 1b68588b84
commit 2f4d3c2851
9 changed files with 234 additions and 198 deletions

View File

@@ -74,7 +74,6 @@ zstd_compression = [
]
[dependencies]
async-trait.workspace = true
axum-client-ip.workspace = true
axum-extra.workspace = true
axum.workspace = true
@@ -87,7 +86,7 @@ hmac.workspace = true
http.workspace = true
http-body-util.workspace = true
hyper.workspace = true
ipaddress.workspace = true
itertools.workspace = true
log.workspace = true
rand.workspace = true
reqwest.workspace = true

View File

@@ -5,6 +5,8 @@ pub mod client;
pub mod router;
pub mod server;
use log as _;
pub(crate) use self::router::{Ruma, RumaResponse, State};
tuwunel_core::mod_ctor! {}