-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (48 loc) · 1.34 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "saturn-cli"
version = "0.4.5"
edition = "2021"
description = "saturn is a command-line interface to calendaring, supporting Google Calendar"
authors = ["Erik Hollensbe <[email protected]>"]
license = "MIT"
homepage = "https://github.com/erikh/saturn"
repository = "https://github.com/erikh/saturn"
keywords = [ "cli", "calendar" ]
categories = [ "command-line-utilities" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "^1"
notify-rust = "^4.9"
anyhow = "^1"
chrono = { version = "^0.4", features = [ "serde" ] }
chrono-tz = "^0.8"
serde = "^1"
serde_derive = "^1"
ciborium = "^0.2"
clap = { version = "^4.4", features = [ "derive" ] }
regex = "^1"
fancy-duration = { version = "^0.6", features = [ "chrono" ] }
ttygrid = "^0.3"
nix = "^0.26"
serde_yaml = "^0.9"
tokio = { version = "^1", features = [ "full" ] }
gcal = "^0.1"
async-trait = "^0.1"
ratatui = { version = "^0.23", features = [ "all-widgets" ] }
crossterm = "^0.27"
dirs = "^5"
tempfile = "^3.8"
[dev-dependencies]
rand = "^0.8"
[package.metadata.rpm]
package = "saturn-cli"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
sui = { path = "/usr/bin/sui" }
saturn = { path = "/usr/bin/saturn" }
[profile.release]
strip = true
lto = true
codegen-units = 24
opt-level = 3