tiempo-rs/Cargo.toml

39 lines
940 B
TOML

[package]
name = "tiempo"
version = "1.0.0"
authors = ["Abraham Toriz <categulario@gmail.com>"]
edition = "2018"
description = "A command line time tracker"
license = "GPL-3.0"
documentation = "https://gitlab.com/categulario/tiempo"
homepage = "https://gitlab.com/categulario/tiempo"
repository = "https://gitlab.com/categulario/tiempo"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "t"
path = "src/main.rs"
[dependencies]
clap = "2"
chrono = { version = "0.4", features = ["serde"] }
rusqlite = { version = "0.25.3", features = ["chrono", "bundled"] }
thiserror = "1"
directories = "3"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
toml = "0.5"
itertools = "0.10"
textwrap = "0.14"
ansi_term = "0.12"
csv = "1.1"
regex = "1.5"
lazy_static = "1.4"
tempfile = "3"
serde_json = "1.0"
hostname = "0.3"
[dev-dependencies]
pretty_assertions = "0.7.2"