summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 6ea8c0d9445822a20a9068066f1dc8c7a5c1abe3 (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
[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"]

repository    = "https://github.com/matthiasbeyer/task-hookrs"
readme        = "./README.md"
license       = "MPL-2.0"

[badges]
maintenance = { status = "passively-maintained" }

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

[dev-dependencies]
env_logger = "0.10"