mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Include fewer deps (#3489)
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.
This commit is contained in:
parent
910860ae1c
commit
f1460013be
2 changed files with 3 additions and 23 deletions
22
Cargo.toml
22
Cargo.toml
|
@ -11,28 +11,8 @@ resolver = "2"
|
|||
# Cargo.toml's in the members with `foo.workspace = true`.
|
||||
[workspace.dependencies]
|
||||
anyhow = "1.0"
|
||||
byteorder = "1.5"
|
||||
cc = "1.0.73"
|
||||
chrono = { version = "^0.4.22", features = ["serde"] }
|
||||
ffizz-header = "0.5"
|
||||
flate2 = "1"
|
||||
google-cloud-storage = { version = "0.15.0", default-features = false, features = ["rustls-tls", "auth"] }
|
||||
lazy_static = "1"
|
||||
libc = "0.2.136"
|
||||
log = "^0.4.17"
|
||||
pretty_assertions = "1"
|
||||
proptest = "^1.4.0"
|
||||
ring = "0.17"
|
||||
rstest = "0.17"
|
||||
rusqlite = { version = "0.29", features = ["bundled"] }
|
||||
serde_json = "^1.0"
|
||||
serde = { version = "^1.0.147", features = ["derive"] }
|
||||
strum = "0.25"
|
||||
strum_macros = "0.25"
|
||||
tempfile = "3"
|
||||
tokio = { version = "1", features = ["rt-multi-thread"] }
|
||||
thiserror = "1.0"
|
||||
ureq = { version = "^2.9.0", features = ["tls"] }
|
||||
uuid = { version = "^1.8.0", features = ["serde", "v4"] }
|
||||
url = { version = "2" }
|
||||
regex = "^1.10.2"
|
||||
taskchampion = "0.5"
|
||||
|
|
|
@ -4,6 +4,6 @@ version = "0.4.1"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
anyhow.workspace = true
|
||||
taskchampion-lib = { path = "../src/tc/lib" }
|
||||
regex = "^1.10.2"
|
||||
regex.workspace = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue