Re-export the chrono crate from taskchampion.

The chrono types are central to use of TC, so this will help consumers
of the TC crate to avoid dependency conflicts.
This commit is contained in:
Dustin J. Mitchell 2022-03-12 20:12:39 +00:00
parent 9355e1a728
commit f8c4ece238
No known key found for this signature in database
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;