-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 887 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 887 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
36
[workspace]
members = ["reminder-core", "reminder-gui/src-tauri"]
[package]
name = "reminder-cli"
version = "0.1.0"
edition = "2021"
description = "A CLI reminder tool with cron support and system notifications"
license = "MIT"
repository = "https://github.com/Maidang1/reminder-cli"
keywords = ["cli", "reminder", "cron", "notification"]
categories = ["command-line-utilities"]
[[bin]]
name = "reminder"
path = "src/main.rs"
[[bin]]
name = "rem"
path = "src/main.rs"
[dependencies]
reminder-core = { path = "./reminder-core" }
clap = { version = "4.4", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
cron = "0.12"
notify-rust = "4.10"
uuid = { version = "1.6", features = ["v4", "serde"] }
dirs = "5.0"
anyhow = "1.0"
tabled = "0.16"
fs2 = "0.4"
regex = "1.10"
english-to-cron = "0.1"