diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-03-08 08:43:28 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-03-08 08:43:28 +0100 |
commit | 1edf0b15ecaa73d55bb72c6f3c6e25d4f231f322 (patch) | |
tree | f69b53af28f2680d2d923add56c1ccb204c96176 /aero-bayou | |
parent | 1a43ce5ac7033c148f64a033f2b1d335e95e11d5 (diff) | |
download | aerogramme-1edf0b15ecaa73d55bb72c6f3c6e25d4f231f322.tar.gz aerogramme-1edf0b15ecaa73d55bb72c6f3c6e25d4f231f322.zip |
Re-enable collections
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::*; |