-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (59 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
65 lines (59 loc) · 1.23 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "ctrlassist"
version = "0.4.0"
authors = ["ruffsl <roxfoxpox@gmail.com>"]
edition = "2024"
rust-version = "1.91.1"
description = "Controller Assist for gaming on Linux"
documentation = "https://docs.rs/ctrlassist/"
readme = "README.md"
homepage = "https://github.com/ruffsl/CtrlAssist"
repository = "https://github.com/ruffsl/CtrlAssist"
license = "Apache-2.0"
keywords = [
"gamepad",
"input",
"joystick",
]
categories = ["game-engines"]
exclude = [
".envrc",
".github/",
".vscode/",
"docs/",
"flake.*",
"flatpak/",
"rust-toolchain.toml",
]
[badges]
github = { repository = "ruffsl/CtrlAssist" }
[dependencies]
clap = { version = "^4.5", features = ["derive"] }
dirs = "6"
env_logger = "0.11"
evdev = "0.13"
fs2 = "0.4"
gilrs = "^0.11.1"
libc = "0.2"
log = "0.4"
signal-hook = "0.4"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] }
udev = "0.9"
uuid = "1"
# New dependencies for tray
ashpd = "0.12"
futures = "0.3"
futures-util = "0.3"
ksni = "^0.3.3"
notify-rust = "4.11"
parking_lot = "0.12"
serde = "1"
toml = "0.9"
[package.metadata.deb]
depends = "libudev1"
section = "utils"
# [profile.release]
# codegen-units = 1
# lto = true
# opt-level = "z"
# strip = true