-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 917 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 917 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
[package]
name = "kde-copycat"
version = "0.1.0"
edition = "2021"
authors = ["Your Name <your.email@example.com>"]
description = "A powerful TUI application for backing up and copying KDE themes, configurations, and desktop settings"
license = "MIT"
repository = "https://github.com/yourusername/kde-copycat"
homepage = "https://github.com/yourusername/kde-copycat"
documentation = "https://github.com/yourusername/kde-copycat/blob/main/README.md"
keywords = ["kde", "theme", "copy", "backup", "linux", "desktop", "plasma", "tui"]
categories = ["command-line-utilities", "desktop-environment"]
readme = "README.md"
[dependencies]
crossterm = "0.28"
ratatui = "0.28"
anyhow = "1.0"
dirs = "5.0"
fs_extra = "1.3"
chrono = { version = "0.4", features = ["serde"] }
atty = "0.2"
[[bin]]
name = "kde-copycat"
path = "src/main.rs"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true