-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
32 lines (30 loc) · 1.01 KB
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
[package]
name = "effy"
version = "0.9.0"
description = "A small and friendly terminal FFmpeg helper that simplifies common tasks"
keywords = ["ffmpeg", "tui", "ratatui"]
authors = ["aNNiMON <annimon119@gmail.com>"]
license = "MIT"
edition = "2024"
repository = "https://github.com/aNNiMON/effy"
homepage = "https://projects.annimon.com/projects/effy"
categories = ["command-line-utilities", "multimedia"]
readme = "README.md"
exclude = ["mprocs.yaml"]
[dependencies]
arboard = { version = "3.6.1", default-features = false }
clap = { version = "4.6.0", features = ["derive"] }
crossterm = "0.29"
ratatui = "0.30.0"
regex = { version = "1.12.3", default-features = false, features = ["std"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tui-input = { version = "0.15.0", features = ["crossterm"], default-features = false }
[profile.release]
codegen-units = 1
strip = true
opt-level = "s"
lto = true