summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 25dba515698374f5594f64fe76ace73c2b9d6fd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "task-hookrs"
version = "0.7.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>",
           "Mario Krehl <mario-krehl@gmx.de>",
           "Malte Brandy <malte.brandy@maralorn.de>",
          ]

description = "Crate to work with taskwarrior exported JSON"
keywords = ["json", "taskwarrior", "todo", "import", "export"]

documentation = "https://matthiasbeyer.github.io/task-hookrs/task_hookrs/index.html"
homepage      = "https://github.com/matthiasbeyer/task-hookrs"
repository    = "https://github.com/matthiasbeyer/task-hookrs"
readme        = "./README.md"
license       = "MPL-2.0"

[badges]
travis-ci   = { repository = "matthiasbeyer/task-hookrs", branch = "master" }
maintenance = { status = "passively-maintained" }

[dependencies]
chrono         = "0.4"
serde          = "1"
serde_derive   = "1"
serde_json     = "1"
uuid           = { version = "0.8", features = ["serde", "v4"] }
log            = "0.4"
derive_builder = "0.9.0"
failure        = "0.1"

[dev-dependencies]
env_logger = "0.7"