diff options
author | Vika <vika@fireburn.ru> | 2021-09-27 17:41:19 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2021-09-27 17:41:19 +0300 |
commit | 340965b1f5f810414742076501a2fff8a39db674 (patch) | |
tree | 08c57cabb9ebdcc4f66244b069f415497ba518b2 /src/database/mod.rs | |
parent | 5e291ca70ca2712696fa5378894e4204679a5f7d (diff) | |
download | kittybox-340965b1f5f810414742076501a2fff8a39db674.tar.zst |
Code cleanup and Cargo.lock updates
Diffstat (limited to 'src/database/mod.rs')
-rw-r--r-- | src/database/mod.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/database/mod.rs b/src/database/mod.rs index 0b97c24..7c67e42 100644 --- a/src/database/mod.rs +++ b/src/database/mod.rs @@ -7,8 +7,7 @@ use serde::{Deserialize, Serialize}; mod redis; #[cfg(redis)] pub use crate::database::redis::RedisStorage; -#[cfg(redis)] -#[cfg(test)] +#[cfg(all(redis, test))] pub use redis::tests::{get_redis_instance, RedisInstance}; mod file; @@ -36,6 +35,8 @@ pub struct StorageError { source: Option<Box<dyn std::error::Error>>, kind: ErrorKind, } +// XXX figure out what makes this un-sendable by default +// and if it's sound to mark StorageError as Send & Sync unsafe impl Send for StorageError {} unsafe impl Sync for StorageError {} impl From<StorageError> for tide::Response { |