forked from PicoJr/rtw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 954 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "rtw"
version = "2.0.0"
authors = ["PicoJr <picojr_dev@gmx.com>"]
edition = "2018"
repository = "https://github.com/PicoJr/rtw"
description = "time tracker command line tool"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["time", "tracker", "cli", "tool"]
categories = ["command-line-utilities"]
include = ["src/**/*", "/LICENSE", "/README.md", "/CHANGELOG.md", "/commands.md", "/shell-completion.md", "/img/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.33.0"
anyhow = "1.0"
thiserror = "1.0.19"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
dirs = "2.0"
chrono = { version = "0.4", features = ["serde"] }
htp = "0.2.1"
config = "0.10.1"
ansi_term = "0.12.1"
term_size = "0.3.2"
tbl = "1.1.0-alpha.1"
icalendar = "0.9.0"
itertools = "0.9"
[dev-dependencies]
tempfile = "3"
assert_cmd = "0.12"
predicates = "1.0.4"