tiempo-rs/Cargo.toml

28 lines
592 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
[dependencies]
clap = "2"
chrono = "0.4"
2021-06-21 11:12:30 -05:00
rusqlite = { version = "0.25.3", features = ["chrono"] }
2021-06-18 11:27:19 -05:00
thiserror = "*"
dirs = "*"
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"
2021-06-28 23:40:41 -05:00
terminal_size = "0.1"
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-06-22 10:18:16 -05:00
[dev-dependencies]
pretty_assertions = "0.7.2"