Buttplug sex toy control library
1// Buttplug Rust Source Code File - See https://buttplug.io for more info.
2//
3// Copyright 2016-2024 Nonpolynomial Labs LLC. All rights reserved.
4//
5// Licensed under the BSD 3-Clause license. See LICENSE file in the project root
6// for full license information.
7
8//! Utility module, for storing types and functions used across other modules in
9//! the library.
10
11pub mod async_manager;
12pub mod future;
13pub mod json;
14pub mod range_serialize;
15pub mod stream;
16
17#[cfg(not(feature = "wasm"))]
18pub use tokio::time::sleep;
19#[cfg(feature = "wasm")]
20pub use wasmtimer::tokio::sleep;