Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
milyin committed Nov 20, 2023
1 parent 8ce56fc commit 0d403ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/zenoh-backend-traits/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use serde_json::{Map, Value};
use std::convert::TryFrom;
use std::time::Duration;
use zenoh::{key_expr::keyexpr, prelude::OwnedKeyExpr, Result as ZResult};
use zenoh_plugin_trait::{PluginStructVersion, PluginStartArgs};
use zenoh_plugin_trait::{PluginStartArgs, PluginStructVersion};
use zenoh_result::{bail, zerror, Error};

#[derive(JsonSchema, Debug, Clone, AsMut, AsRef)]
Expand Down
2 changes: 1 addition & 1 deletion zenoh/src/net/runtime/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ use stop_token::future::FutureExt;
use stop_token::{StopSource, TimedOutError};
use uhlc::{HLCBuilder, HLC};
use zenoh_link::{EndPoint, Link};
use zenoh_plugin_trait::{PluginStructVersion, PluginStartArgs};
use zenoh_plugin_trait::{PluginStartArgs, PluginStructVersion};
use zenoh_protocol::core::{whatami::WhatAmIMatcher, Locator, WhatAmI, ZenohId};
use zenoh_protocol::network::{NetworkBody, NetworkMessage};
use zenoh_result::{bail, ZResult};
Expand Down
2 changes: 1 addition & 1 deletion zenohd/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ use async_std::task;
use clap::{ArgMatches, Command};
use futures::future;
use git_version::git_version;
use zenoh::Result;
use std::collections::HashSet;
use zenoh::config::{Config, ModeDependentValue, PermissionsConf, PluginLoad, ValidatedMap};
use zenoh::plugins::PluginsManager;
use zenoh::prelude::{EndPoint, WhatAmI};
use zenoh::runtime::{AdminSpace, Runtime};
use zenoh::Result;

const GIT_VERSION: &str = git_version!(prefix = "v", cargo_prefix = "v");

Expand Down

0 comments on commit 0d403ab

Please sign in to comment.