taskwarrior/lib/Cargo.toml
Dustin J. Mitchell f8c4ece238
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.
2022-03-15 17:58:54 -04:00

16 lines
273 B
TOML

[package]
name = "taskchampion-lib"
version = "0.1.0"
edition = "2018"
[lib]
name = "taskchampion"
crate-type = ["staticlib", "cdylib"]
[dependencies]
libc = "0.2.113"
taskchampion = { path = "../taskchampion" }
anyhow = "1.0"
[dev-dependencies]
pretty_assertions = "1"