-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (41 loc) · 1.21 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (41 loc) · 1.21 KB
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
[package]
name = "SamRewritten"
version = "1.5.0"
description = "Steam Achievement Manager Rewritten"
edition = "2024"
rust-version = "1.95"
authors = [
"Paul <abonnementspaul -@- gmail.com>",
"Phillip <phillip.mendel -@- posteo.de>",
"All SamRewritten contributors"
]
[dependencies]
gtk = { version = "0", package = "gtk4", features = ["v4_14"], optional = true }
adw = { version = "0", package = "libadwaita", features = ["v1_5"], optional = true }
clap = { version = "4", features = ['derive'], optional = true }
quick-xml = { version = "0", features = ["serialize"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
reqwest = { version = "0", features = ["blocking"] }
interprocess = "2"
libloading = "0"
keyvalues-serde = "0"
[features]
default = ['gui']
gui = ['dep:gtk']
adwaita = ['gui', 'dep:adw']
cli = ['dep:clap']
win-console = ['gui']
[target.'cfg(windows)'.dependencies]
winreg = "0"
[target.'cfg(windows)'.build-dependencies]
winres = "0"
[package.metadata.appimage]
icon = "assets/icon_256.png"
desktop_entry = "package/samrewritten.desktop"
assets = ["assets/gschemas.compiled", "assets/icons", "locale"]
[profile.release]
lto = "thin"
[[bin]]
name = "samrewritten"
path = "src/main.rs"