-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
76 lines (66 loc) · 2.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "aw-fm"
version = "0.1.0"
edition = "2021"
description = "Awused's personal gui file manager"
readme = "README.md"
license = "MIT"
keywords = ["gui", "file-manager"]
homepage = "https://github.com/awused/aw-fm"
repository = "https://github.com/awused/aw-fm"
links = "GTK4, X11"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ahash = "0.8.11"
async-channel = "2.3.1"
awconf = { git = "https://github.com/awused/awconf" }
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std"] }
clap = { version = "4.5.20", features = ["derive"] }
derive_more = { version = "1.0.0", default-features = false, features = ["deref", "deref_mut", "from"] }
dirs = "5.0.1"
env_logger = { version = "0.11.5", default-features = false, features = ["auto-color", "color"] }
futures-util = { version = "0.3.31", default-features = false }
futures-executor = { version = "0.3.31", default-features = false }
gtk = { version = "0.9.2", package = "gtk4", features = ["gnome_45"]}
hashlink = "0.9.1"
humansize = "2.1.3"
ignore = "0.4.23"
libc = "0.2.161"
log = "0.4.22"
notify = "6.1.1"
num-format = "0.4.4"
once_cell = "1.20.2"
ouroboros = "0.18.4"
path-clean = "1.0.1"
rayon = "1.10.0"
regex = "1.11.0"
rmp-serde = "1.3.0"
rusqlite = { version = "0.32.1", features = ["bundled"] }
serde = { version = "1.0.210", default-features = false, features = ["derive"] }
serde_json = "1.0.130"
strum = "0.26.3"
strum_macros = "0.26"
tokio = { version = "1.40.0", features = ["macros", "process", "rt", "sync", "time"] }
toml = "0.8.19"
unicode-normalization = "0.1.24"
uzers = "0.12.1"
# This is auto-generated, but pretty much left unmaintained and abandoned.
# Local patched version to generate what I need and expose the "v42" feature.
gnome-desktop = { git = "https://github.com/awused/gnome-desktop-rs", features = [ "v42" ] }
# gnome-desktop = { path = "../../third_party/gnome-desktop-rs/gnome-desktop", features = [ "v42" ] }
# It's this or ffmpeg
gstreamer = "0.23.2"
gstreamer-audio = "0.23.2"
gstreamer-video = "0.23.2"
gstreamer-pbutils = "0.23.2"
[target.'cfg(unix)'.dependencies]
signal-hook = "0.3.17"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = { version = "0.6.0", features = [ "background_threads" ] }
[package.metadata.pkg-config]
gtk4 = "4.10"
[build-dependencies]
metadeps = "1.1.2"
pkg-config = "0.3.31"
[features]
debug-forced-slow = []