-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 707 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 707 Bytes
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
[package]
name = "flux"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[dependencies]
relm4 = { version = "0.11.0", features = ["libadwaita"] }
adw = { package = "libadwaita", version = "0.9.1" }
gtk = { package = "gtk4", version = "0.11.2" }
dirs = "6.0"
rayon = "1.10.0"
tokio = { version = "1.40", features = ["rt", "rt-multi-thread"] }
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
toml = "1.0"
chrono = "0.4.43"
sha2 = "0.11.0"
xattr = "1.6.1"
imagesize = "0.14.0"
md5 = "0.8.0"
rusqlite = { version = "0.39", features = ["bundled"] }
gio-unix = { version = "0.22.0", package = "gio-unix" }
[dev-dependencies]
tempfile = "3"
[[bin]]
name = "flux-fm"
path = "src/main.rs"