my fork of dmp
Exposing APIs
| -rw-r--r-- | src/dmp.rs | 2 | ||||
| -rw-r--r-- | src/lib.rs | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -2,7 +2,7 @@ use core::str; use std::{char, collections::HashMap, fmt::Display}; #[cfg(target_arch = "wasm32")] -use instant::{instant::Instant, Duration}; +use instant::{Instant, Duration}; #[cfg(not(target_arch = "wasm32"))] use std::time::{Duration, Instant}; @@ -1,3 +1,6 @@ pub mod dmp; pub mod errors; pub mod traits; + + +pub use dmp::*;
\ No newline at end of file |