diff options
Diffstat (limited to 'aero-bayou')
-rw-r--r-- | aero-bayou/Cargo.toml | 2 | ||||
-rw-r--r-- | aero-bayou/src/lib.rs | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/aero-bayou/Cargo.toml b/aero-bayou/Cargo.toml index d271f4a..cade216 100644 --- a/aero-bayou/Cargo.toml +++ b/aero-bayou/Cargo.toml @@ -10,6 +10,8 @@ description = "A simplified version of Bayou by Terry et al. (ACM SIGOPS 1995)" aero-user.workspace = true anyhow.workspace = true +hex.workspace = true +tracing.workspace = true log.workspace = true rand.workspace = true serde.workspace = true diff --git a/aero-bayou/src/lib.rs b/aero-bayou/src/lib.rs index 7756964..159dbbf 100644 --- a/aero-bayou/src/lib.rs +++ b/aero-bayou/src/lib.rs @@ -1,4 +1,4 @@ -mod timestamp +pub mod timestamp; use std::sync::{Arc, Weak}; use std::time::{Duration, Instant}; @@ -9,9 +9,9 @@ use rand::prelude::*; use serde::{Deserialize, Serialize}; use tokio::sync::{watch, Notify}; -use aero_foundations::cryptoblob::*; -use aero_foundations::login::Credentials; -use aero_foundations::storage; +use aero_user::cryptoblob::*; +use aero_user::login::Credentials; +use aero_user::storage; use crate::timestamp::*; |