Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
milyin committed Apr 24, 2024
1 parent d103085 commit da5a1a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions zenoh/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ pub mod internal {
#[cfg(all(feature = "unstable", feature = "shared-memory"))]
pub mod shm {
pub use zenoh_shm::api::client_storage::SharedMemoryClientStorage;
pub use zenoh_shm::api::provider::shared_memory_provider::{BlockOn, GarbageCollect};
pub use zenoh_shm::api::slice::zsliceshm::{zsliceshm, ZSliceShm};
pub use zenoh_shm::api::slice::zsliceshmmut::{zsliceshmmut, ZSliceShmMut};
pub use zenoh_shm::api::{
Expand All @@ -373,7 +374,4 @@ pub mod shm {
},
provider::shared_memory_provider::SharedMemoryProviderBuilder,
};
pub use zenoh_shm::api::provider::shared_memory_provider::{
BlockOn, GarbageCollect,
};
}
2 changes: 1 addition & 1 deletion zenoh/tests/shm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ mod tests {
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::Arc;
use std::time::Duration;
use zenoh::prelude::r#async::*;
use zenoh::internal::ztimeout;
use zenoh::prelude::r#async::*;

const TIMEOUT: Duration = Duration::from_secs(60);
const SLEEP: Duration = Duration::from_secs(1);
Expand Down

0 comments on commit da5a1a0

Please sign in to comment.