do not require taskchampion from sync-server

This commit is contained in:
Dustin J. Mitchell
2020-11-27 20:08:54 -05:00
parent d46f20e75a
commit 3092a6bb7f
6 changed files with 6 additions and 6 deletions

View File

@@ -74,7 +74,7 @@ mod test {
use crate::app_scope;
use crate::storage::{InMemoryStorage, Storage};
use actix_web::{http::StatusCode, test, App};
use taskchampion::Uuid;
use uuid::Uuid;
#[actix_rt::test]
async fn test_success() {

View File

@@ -45,7 +45,7 @@ mod test {
use crate::app_scope;
use crate::storage::{InMemoryStorage, Storage};
use actix_web::{http::StatusCode, test, App};
use taskchampion::Uuid;
use uuid::Uuid;
#[actix_rt::test]
async fn test_success() {

View File

@@ -2,7 +2,7 @@
//! invariants, and so on.
use crate::storage::{Client, StorageTxn};
use failure::Fallible;
use taskchampion::Uuid;
use uuid::Uuid;
/// The distinguished value for "no version"
pub const NO_VERSION_ID: VersionId = Uuid::nil();

View File

@@ -1,5 +1,5 @@
use failure::Fallible;
use taskchampion::Uuid;
use uuid::Uuid;
mod inmemory;
pub(crate) use inmemory::InMemoryStorage;