forked from couleur-tweak-tips/smoothie-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (45 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
[package]
name = "smoothie-rs"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[dependencies]
clap = {version = "4.5.26", features = ["derive"] } # cli arg helper
color-eyre = "0.6.3" # error handling
ffprobe = "0.4.0"
opener = "0.7.2" # open file with default app
rand = "0.8.5" # randomly choose from fruits for suffix
rfd = "0.15.2" # open file dialog
which = "7.0.1" # Get-Command / where.exe / which alternative
# json stuff
serde = "1.0.217"
serde_derive = "1.0.217"
serde_json = "1.0.136"
colored = "3.0.0"
enable-ansi-support = "0.2.1"
num-rational = "0.4.2"
anyhow = "1.0.95"
ureq = { version = "2.12.1", features = ["json"] }
cty = "0.2.2"
min-max = "0.1.8"
indicatif = { version = "0.17.9", features = ["improved_unicode"] }
regex = "1.11.1"
indexmap = { version = "2.7.0", features = ["serde"] }
# gui-related
eframe = "0.30.0" # egui 'frame'work
env_logger = "0.11.6"
winit = "0.30.8" # load icon
image = "0.25.5" # load icon
copypasta = "0.10.1" # copy to clipboard
winapi = { version = "0.3.9", features = ["wincon"] }
windows = { version = "0.59.0", features = ["Win32", "Win32_UI", "Win32_UI_WindowsAndMessaging"]}
homedir = "0.3.4"
[build-dependencies]
winres = "0.1" # give the exe an icon
cc = "1.2.10" # for /src/windows.c
# make small binaries with --release
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1