-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 893 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
31
32
33
34
35
36
[package]
name = "todor"
version = "1.10.1"
edition = "2021"
authors = ["JF Ding <[email protected]>"]
description = "yet another cli TODO in Rust"
repository = "https://github.com/jfding/todor"
license = "Apache-2.0"
keywords = ["todo", "rust", "cli"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.89"
chrono = "0.4.38"
clap = { version = "4.5.18", features = ["derive"] }
cmd_lib = "1.9.5"
colored = "2.1.0"
crossterm = "0.28.1"
dirs = "5.0.1"
inquire = { version = "0.7.5", features = ["date"] }
lazy_static = "1.5.0"
regex = "1.11.0"
serde = { version = "1.0.210", features = ["derive"] }
toml = "0.8.19"
which = "6.0.3"
zip = { version = "2.2.0", default-features = false, features = ["aes-crypto"] }
[target.'cfg(unix)'.dependencies]
stdio-override = "0.1.3"
[profile.release-with-symbols]
inherits = "release"
strip = false
[dev-dependencies]
tempfile = "3.2"