summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 3ed468d568446e6c5e8c6e78bc4f8bef2379107c (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
[package]
name = "task-hookrs"
version = "0.9.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"

edition = "2021"
resolver = "2"

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

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

[dev-dependencies]
env_logger = "0.10"