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
17 changed files with 23 additions and 24 deletions

View File

@@ -84,9 +84,9 @@ fn import_task<W: WriteColor>(
mod test {
use super::*;
use crate::invocation::test::*;
use chrono::{TimeZone, Utc};
use pretty_assertions::assert_eq;
use std::convert::TryInto;
use taskchampion::chrono::{TimeZone, Utc};
use taskchampion::{Priority, Status};
use tempfile::TempDir;