tiempo-rs/Cargo.toml

52 lines
959 B
TOML
Raw Permalink Normal View History

2021-08-14 18:48:36 -05:00
[[bin]]
name = "t"
path = "src/bin/t.rs"
2021-08-14 18:48:36 -05:00
2021-06-18 11:27:19 -05:00
[package]
2021-08-14 11:47:29 -05:00
name = "tiempo"
2021-08-14 18:48:36 -05:00
repository = "https://gitlab.com/categulario/tiempo-rs"
2021-06-18 11:27:19 -05:00
authors = ["Abraham Toriz <categulario@gmail.com>"]
2021-12-13 14:20:56 -06:00
edition = "2021"
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"
2022-10-30 23:30:57 -06:00
documentation = "https://tiempo.categulario.xyz"
2021-08-14 11:57:56 -05:00
homepage = "https://gitlab.com/categulario/tiempo-rs"
2022-11-26 21:01:52 -06:00
version = "1.6.0"
default-run = "t"
2021-06-18 11:27:19 -05:00
[dependencies]
2021-08-14 11:54:26 -05:00
thiserror = "1"
directories = "3"
serde_yaml = "0.9"
2021-06-18 11:27:19 -05:00
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-08-25 14:30:27 -05:00
atty = "0.2"
timeago = "0.3"
2021-06-22 10:18:16 -05:00
2023-02-13 18:17:47 -06:00
[dependencies.clap]
version = "3"
features = ["cargo"]
2021-08-14 18:48:36 -05:00
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.rusqlite]
2022-07-22 06:09:51 -05:00
version = "0.28.0"
2021-08-14 18:48:36 -05:00
features = ["chrono", "bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
2021-06-22 10:18:16 -05:00
[dev-dependencies]
2022-07-19 05:38:37 -05:00
pretty_assertions = "1.2"