mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00

Update chrono, and include fewer deps Somewhere in the process of moving TaskChampion back to its own repo, Taskwarrior's `Cargo.toml` ended up containing all of its dependencies, unnecessarily. This included an old version of `chrono` (addressed in https://github.com/GothenburgBitFactory/taskchampion/pull/399). Removing the old version requirement from `Cargo.toml` results in using a newer version, addressing a (benign) security vulnerability.
18 lines
344 B
TOML
18 lines
344 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"src/tc/lib",
|
|
"xtask",
|
|
]
|
|
|
|
resolver = "2"
|
|
|
|
# All Rust dependencies are defined here, and then referenced by the
|
|
# Cargo.toml's in the members with `foo.workspace = true`.
|
|
[workspace.dependencies]
|
|
anyhow = "1.0"
|
|
ffizz-header = "0.5"
|
|
libc = "0.2.136"
|
|
pretty_assertions = "1"
|
|
regex = "^1.10.2"
|
|
taskchampion = "0.5"
|