summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 313669aa94dc68da681c517a9cc072848108dad8 (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 = "kairos"
version = "0.3.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]

description = "A library on top of chrono to calculate times and dates ergonomically"

categories  = [ "date-and-time" ]
keywords    = ["time", "calc", "parser"]
readme      = "README.md"
license     = "MPL-2.0"

repository    = "https://github.com/matthiasbeyer/kairos"

[dependencies]
chrono = "0.4"
nom = "3.2"
iso8601 = "0.2"
thiserror = "1"

filters = { version  = "0.3", optional = true }

[dev-dependencies]
env_logger = "0.4"
log        = "0.4"

[features]
default = []
with-filters = [ "filters" ]