mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[package]
|
|
name = "taskchampion"
|
|
version = "0.4.1"
|
|
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
|
|
description = "Personal task-tracking"
|
|
homepage = "https://gothenburgbitfactory.github.io/taskwarrior/taskchampion/"
|
|
documentation = "https://docs.rs/crate/taskchampion"
|
|
repository = "https://github.com/GothenburgBitFactory/taskwarrior"
|
|
readme = "../README.md"
|
|
license = "MIT"
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
|
|
[features]
|
|
default = ["server-sync" ]
|
|
server-sync = ["crypto", "dep:ureq"]
|
|
crypto = ["dep:ring"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[dependencies]
|
|
uuid.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
chrono.workspace = true
|
|
anyhow.workspace = true
|
|
thiserror.workspace = true
|
|
ureq.workspace = true
|
|
log.workspace = true
|
|
rusqlite.workspace = true
|
|
strum.workspace = true
|
|
strum_macros.workspace = true
|
|
flate2.workspace = true
|
|
byteorder.workspace = true
|
|
ring.workspace = true
|
|
|
|
ureq.optional = true
|
|
ring.optional = true
|
|
|
|
[dev-dependencies]
|
|
proptest.workspace = true
|
|
tempfile.workspace = true
|
|
rstest.workspace = true
|
|
pretty_assertions.workspace = true
|