-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (43 loc) · 993 Bytes
/
Cargo.toml
File metadata and controls
53 lines (43 loc) · 993 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "cheatree"
version = "0.2.1"
edition = "2021"
authors = ["Your Name <your.email@example.com>"]
description = "A terminal-first cheatsheet system with tree-based YAML structure"
license = "MIT"
repository = "https://github.com/yourusername/cheatree"
keywords = ["cli", "tui", "cheatsheet", "terminal"]
categories = ["command-line-utilities"]
[dependencies]
# CLI
clap = { version = "4.4", features = ["derive", "env"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
# TUI
ratatui = "0.28"
crossterm = "0.28"
# Directories
directories = "5.0"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Clipboard
arboard = "3.4"
# Misc
regex = "1.10"
unicode-width = "0.2"
textwrap = "0.16"
indexmap = { version = "2.2", features = ["serde"] }
toml = "0.8"
base64 = "0.22"
[dev-dependencies]
tempfile = "3.10"
[[bin]]
name = "cheatree"
path = "src/main.rs"
[profile.release]
lto = true
codegen-units = 1
strip = true