-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
50 lines (44 loc) · 1.36 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
[package]
name = "ftag"
version = "0.7.3"
edition = "2024"
authors = ["Ranjeeth Mahankali <[email protected]>"]
description = "CLI tool for tagging and searching files. See README.md for more info."
readme = "README.md"
repository = "https://github.com/ranjeethmahankali/ftag"
license = "GPL-3.0-only"
keywords = ["file", "tag", "search", "organize", "archive"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#Used by the CLI.
clap = { version = "4.5.26", features = ["cargo"] }
edit = "0.1.5"
crossterm = "0.28.1"
ratatui = "0.29.0"
opener = "0.7.2"
# Dependencies for the GUI
egui = "0.31.0"
eframe = "0.31.0"
egui_extras = { version = "0.31.0", default-features = false, features = ["default", "all_loaders", "image"] }
image = { version = "0.25.5", default-features = false, features = ["png", "jpeg"] }
# Used for loading and parsing data.
fast-glob = "0.4.3"
aho-corasick = "1.1.3"
smallvec = "1.13.2"
[[bin]]
name = "ftag"
path = "src/cli.rs"
[[bin]]
name = "ftagui"
path = "src/gui.rs"
# For smaller binary size.
[profile.release]
strip = true # Automatically strip symbols
panic = "abort" # Don't unwind stack. Should never panic.
codegen-units = 1
lto = true
[profile.release-with-debug]
inherits = "release"
strip = false # Automatically strip symbols
debug = true