-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 837 Bytes
/
Cargo.toml
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
[package]
name = "timr"
version = "0.5.0"
edition = "2021"
authors = ["Noah Dunbar <[email protected]>"]
license = "MIT"
description = "Simple CLI timer"
readme = "README.md"
homepage = "https://github.com/The-Noah/timr"
repository = "https://github.com/The-Noah/timr"
keywords = ["cli"]
categories = ["command-line-utilities"]
[dependencies]
chrono = { version = "0.4.38", default-features = false, features = [
"clock",
"std",
] }
ctrlc = { version = "3.4.5", features = ["termination"] }
serde = { version = "1.0.210", features = ["serde_derive"] }
termsize = "0.1.9"
toml = "0.8.19"
[target.'cfg(windows)'.dependencies.windows]
version = "0.58.0"
features = ["Win32_System_Console"]
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.59.0"
features = ["Win32_Globalization", "Win32_System_Com", "Win32_UI_Shell"]