Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
milyin committed Apr 23, 2024
1 parent 420e38b commit a9a906f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions zenoh/src/api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ pub(crate) mod key_expr;
#[cfg(feature = "unstable")]
pub(crate) mod liveliness;
#[cfg(all(feature = "unstable", feature = "plugins"))]
pub(crate) mod loader;
#[cfg(all(feature = "unstable", feature = "plugins"))]
pub(crate) mod plugins;
pub(crate) mod publication;
pub(crate) mod query;
Expand All @@ -35,5 +37,3 @@ pub(crate) mod session;
pub(crate) mod subscriber;
pub(crate) mod time;
pub(crate) mod value;
#[cfg(all(feature = "unstable", feature = "plugins"))]
pub(crate) mod loader;
1 change: 0 additions & 1 deletion zenoh/src/api/scouting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,4 +377,3 @@ where
handler: DefaultHandler::default(),
}
}

2 changes: 1 addition & 1 deletion zenoh/src/net/runtime/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ use super::routing;
use super::routing::router::Router;
#[cfg(all(feature = "unstable", feature = "plugins"))]
use crate::api::loader::{load_plugins, start_plugins};
use crate::config::{unwrap_or_default, Config, ModeDependent, Notifier};
#[cfg(all(feature = "unstable", feature = "plugins"))]
use crate::api::plugins::PluginsManager;
use crate::config::{unwrap_or_default, Config, ModeDependent, Notifier};
use crate::{GIT_VERSION, LONG_VERSION};
pub use adminspace::AdminSpace;
use futures::stream::StreamExt;
Expand Down
2 changes: 1 addition & 1 deletion zenohd/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ use tracing_subscriber::util::SubscriberInitExt;
use tracing_subscriber::EnvFilter;
use zenoh::config::EndPoint;
use zenoh::config::{Config, ModeDependentValue, PermissionsConf, ValidatedMap};
use zenoh::core::AsyncResolve;
use zenoh::core::Result;
use zenoh::scouting::WhatAmI;
use zenoh::core::AsyncResolve;

#[cfg(feature = "loki")]
use url::Url;
Expand Down

0 comments on commit a9a906f

Please sign in to comment.