Merge pull request #345 from djmitche/reexport-chrono

Re-export the chrono crate from taskchampion.
This commit is contained in:
Dustin J. Mitchell
2022-03-15 17:59:03 -04:00
committed by GitHub
17 changed files with 23 additions and 24 deletions

View File

@@ -7,7 +7,6 @@ publish = false
build = "build.rs"
[dependencies]
chrono = { version = "^0.4.10", features = ["serde"] }
taskchampion = { path = "../taskchampion" }
taskchampion-sync-server = { path = "../sync-server" }

View File

@@ -1,4 +1,4 @@
use chrono::{TimeZone, Utc};
use taskchampion::chrono::{TimeZone, Utc};
use taskchampion::{Replica, ServerConfig, Status, StorageConfig};
use tempfile::TempDir;