blob: 0c16a0bf6737b3ee47c256b81ccd983c5e035afa (
plain) (
blame)
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
|
[package]
name = "nogamepads"
authors = [ "CatilGrass" ]
description = "Connect everyone's phones to the game! A mobile device control solution for local multiplayer gaming, featuring an in-game interface, controller client, and support for universal devices."
license = "MIT"
homepage = "https://github.com/CatilGrass/NoGamepads"
repository = "https://github.com/CatilGrass/NoGamepads"
readme = "README.md"
version = "0.1.0"
edition = "2024"
[workspace]
members = [
"core",
"apps/console",
"apps/client",
"export",
"core/bindings/lang/clang"
]
[workspace.package]
version = "0.1.0"
[dependencies]
env_logger = "0.10.2"
shell-words = "1.1.0"
clap = { version = "4.5.38", features = ["derive"] }
tokio = { version = "1.45.0", features = ["full"] }
chrono = "0.4"
log = "0.4.27"
[profile.release]
strip = true
debug = false
[profile.dev]
strip = false
debug = true
|