-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.44 KB
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 1.44 KB
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
36
37
38
39
40
41
42
[package]
name = "comodoro"
description = "CLI to manage timers"
version = "1.0.0"
authors = ["soywod <clement.douin@posteo.net>"]
edition = "2021"
license = "AGPL-3.0-or-later"
categories = ["command-line-utilities", "network-programming"]
keywords = ["cli", "pomodoro", "timer", "client", "server"]
homepage = "https://pimalaya.org"
documentation = "https://github.com/pimalaya/comodoro"
repository = "https://github.com/pimalaya/comodoro"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = ["client", "server", "command", "notify"]
client = ["io-timer/client"]
server = ["io-timer/server"]
command = ["dep:io-process"]
notify = ["dep:notify-rust"]
vendored = ["notify-rust?/d_vendored"]
[build-dependencies]
pimalaya-toolbox = { version = "0.0.3", default-features = false, features = ["build"] }
[dependencies]
anyhow = "1"
clap = { version = "4.4", features = ["derive"] }
clap_complete = "4.4"
clap_mangen = "0.2"
convert_case = "0.11"
env_logger = "0.11"
io-process = { version = "0.0.2", default-features = false, features = ["std", "serde"], optional = true }
io-stream = { version = "0.0.2", default-features = false, features = ["std"] }
io-timer = "0.0.1"
log = "0.4"
notify-rust = { version = "4", default-features = false, features = ["d"], optional = true }
pimalaya-toolbox = { version = "0.0.3", default-features = false, features = ["config", "prompt", "secret", "stream", "terminal"] }
serde = "1"