summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 57529889ae309880f1f0703b4a3e2f9918452c43 (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
[package]
name = "kairos"
version = "0.0.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"
error-chain = "0.10"

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

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

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