-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
45 lines (38 loc) · 1.14 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
[package]
name = "SamRewritten"
version = "1.2.3"
description = "Steam Achievement Manager Rewritten"
edition = "2024"
authors = [
"Paul <abonnementspaul -@- gmail.com>",
"Phillip <phillip.mendel -@- posteo.de>",
"All SamRewritten contributors"
]
[dependencies]
gtk = { version = "0", package = "gtk4", features = ["v4_6"], optional = true }
adw = { version = "0", package = "libadwaita", features = ["v1_1"], 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"
[features]
default = ['dep:gtk']
adwaita = ['dep:gtk', 'dep:adw']
cli = ['dep:clap']
win-console = ['dep:gtk']
[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"]
[profile.release]
lto = "thin"
[[bin]]
name = "samrewritten"
path = "src/main.rs"