tiempo-rs/Cargo.toml

34 lines
714 B
TOML
Raw Normal View History

2021-06-18 11:27:19 -05:00
[package]
name = "tiempo"
version = "0.1.0"
authors = ["Abraham Toriz <categulario@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "t"
path = "src/main.rs"
2021-06-18 11:27:19 -05:00
[dependencies]
clap = "2"
2021-07-26 20:32:13 -05:00
chrono = { version = "0.4", features = ["serde"] }
rusqlite = { version = "0.25.3", features = ["chrono", "bundled"] }
2021-06-18 11:27:19 -05:00
thiserror = "*"
directories = "*"
2021-06-18 11:27:19 -05:00
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
toml = "0.5"
itertools = "0.10"
2021-06-28 19:32:29 -05:00
textwrap = "0.14"
ansi_term = "0.12"
2021-06-30 18:51:34 -05:00
csv = "1.1"
2021-07-01 23:42:59 -05:00
regex = "1.5"
2021-07-02 20:40:06 -05:00
lazy_static = "1.4"
2021-07-20 22:08:07 -05:00
tempfile = "3"
2021-07-26 20:32:13 -05:00
serde_json = "1.0"
2021-07-30 12:01:44 -05:00
hostname = "*"
2021-06-22 10:18:16 -05:00
[dev-dependencies]
pretty_assertions = "0.7.2"