forked from PhilipK/BoilR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
75 lines (60 loc) · 1.44 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
[package]
edition = "2021"
name = "boilr"
version = "1.7.21"
[dependencies]
base64 = "^0.21.0"
config = "^0.13.3"
copypasta = "^0.8.1"
flate2 = "^1.0.25"
is_executable = "^1.0.1"
nom = "^7.1.1"
rusty-leveldb = "^1.0.4"
serde_json = "^1.0.91"
steam_shortcuts_util = "^1.1.8"
steamgriddb_api = "^0.3.1"
sysinfo = "^0.27.1"
eyre = "^0.6.8"
color-eyre = "^0.6.2"
dyn-clone = "^1.0.10"
time = {version="^0.3.17", features = ["formatting"]}
[target."cfg(not(windows))".dependencies]
openssl = { version = "*", features = ["vendored"] }
[dependencies.dashmap]
features = ["serde"]
version = "^5.4.0"
[dependencies.eframe]
version = "^0.20.1"
[dependencies.egui]
version = "^0.20.1"
[dependencies.futures]
version = "^0.3.25"
[dependencies.image]
features = ["png","webp","jpeg"]
version ="^0.24.5"
#git = "https://github.com/PhilipK/image"
#rev = "55a668409b28fedcd6cd3dea25ae1b3cc9d25ec5"
[dependencies.reqwest]
default_features = false
version = "^0.11.13"
[dependencies.serde]
features = ["derive"]
version = "^1.0.151"
[dependencies.tokio]
features = ["full"]
version = "^1.24.2"
[dependencies.toml]
version = "^0.7.1"
[target."cfg(windows)"]
[target."cfg(windows)".build-dependencies]
winres = "^0.1.12"
[target."cfg(windows)".dependencies]
winreg = "^0.10.1"
sqlite = "^0.30.3"
[features]
# This feature is enabled when building for a flatpak environment
flatpak = []
#[profile.release]
#codegen-units = 1
#opt-level = "z" # Optimize for size.
#lto = true