-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
34 lines (27 loc) · 907 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
[package]
name = "dispute"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = "debuginfo"
opt-level = "s"
[dependencies]
ui = { path = "ui" }
serde = { version = "1.0.138", features = ["derive"] }
serde_yaml = "0.9.25"
directories = "5.0.1"
image = { version = "0.24", default-features = false, features = ["png"] }
async-std = { version = "1.12.0", features = ["unstable"] }
rodio = { version = "0.17.1", default-features = false, features = ["mp3"] }
tray-item = { version = "0.8.0" }
notify-rust = "4.8.0"
dark-light = "1.0.0"
notify = "6.1"
fslock = "0.2.1"
[target.'cfg(target_family = "unix")'.dependencies]
tray-item = { version = "0.8.0", features = ["ksni"] }
[target.'cfg(target_family = "windows")'.build-dependencies]
windres = "0.2.2"
[package.metadata.appimage]
auto_link = true