forked from Maclay74/steam-patch
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
28 lines (27 loc) · 844 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
[package]
name = "steam-patch"
version = "0.2.1"
edition = "2021"
description = "Steam-patch"
[dependencies]
tokio = { version = "1", features = [ "rt-multi-thread", "macros"] }
serde = { version = "1.0.169", features=["derive"] }
serde_json = { version = "1.0.100" }
tungstenite = "0.20.0"
dirs = "5.0.1"
futures = "0.3.28"
sysinfo = "0.29.4"
regex = "1"
evdev = { version = "0.12.1", features = ["tokio", "serde"]}
hyper = { version = "0.14", features = ["full"] }
inotify = "0.10.1"
lazy_static = "1.4.0"
toml = "0.5.8"
reqwest = { version = "0.11", features = ["json"] }
[profile.release]
opt-level = "z"
# debug = true
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*