-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
51 lines (39 loc) · 1015 Bytes
/
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
[package]
name = "szyszka"
version = "3.0.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021"
description = "Fast, powerful and easy to use file renamer"
license = "MIT"
homepage = "https://github.com/qarmin/szyszka"
repository = "https://github.com/qarmin/szyszka"
rust-version = "1.69.0"
[dependencies]
gdk4 = "0.8"
gio = "0.19"
glib = "0.19"
directories-next = "2.0.0"
rayon = "1.8.1"
# For checking path
jwalk = "0.8.1"
humansize = "2.1"
chrono = "0.4.33"
# For opening files
open = "5.0"
# For slugs
slugmin = "1.0"
regex = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Language
i18n-embed = { version = "0.14", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.8"
rust-embed = "8.2"
once_cell = "1.19"
[dependencies.gtk4]
version = "0.8"
default-features = false # just in case
features = ["v4_6"]
# Optimize all dependencies except application/workspaces, even in debug builds
[profile.dev.package."*"]
opt-level = 3