diff options
| author | 1992414357@qq.com <1992414357@qq.com> | 2025-05-27 07:21:37 +0800 |
|---|---|---|
| committer | 1992414357@qq.com <1992414357@qq.com> | 2025-05-27 07:21:37 +0800 |
| commit | f8336ed832fa8e1ddd2f1783bdfc23d3279d5e6a (patch) | |
| tree | 42097cd72e46736ac3a544bd3d6dc50e2327a677 /Cargo.toml | |
First commit
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..5507615 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,35 @@ +[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 = "LGPL-2" + +homepage = "https://github.com/CatilGrass/NoGamepads" +repository = "https://github.com/CatilGrass/NoGamepads" +readme = "README.md" + +version = "0.1.0" +edition = "2024" + +[workspace] +members = [ + "core", + "console", + "core_c" +] + +[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 |
