tiempo-rs/Cargo.toml

39 lines
949 B
TOML
Raw Normal View History

2021-06-18 11:27:19 -05:00
[package]
2021-08-14 11:47:29 -05:00
name = "tiempo"
version = "1.0.1"
2021-06-18 11:27:19 -05:00
authors = ["Abraham Toriz <categulario@gmail.com>"]
edition = "2018"
2021-08-14 11:43:24 -05:00
description = "A command line time tracker"
2021-08-14 11:50:58 -05:00
license = "GPL-3.0"
2021-08-14 11:57:56 -05:00
documentation = "https://gitlab.com/categulario/tiempo-rs"
homepage = "https://gitlab.com/categulario/tiempo-rs"
repository = "https://gitlab.com/categulario/tiempo-rs"
2021-06-18 11:27:19 -05:00
# 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-08-14 11:54:26 -05:00
thiserror = "1"
directories = "3"
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-08-14 11:54:26 -05:00
hostname = "0.3"
2021-06-22 10:18:16 -05:00
[dev-dependencies]
pretty_assertions = "0.7.2"