From a210ab86ee43dea3b4d9d0f2af5750c5a4adf096 Mon Sep 17 00:00:00 2001 From: "1992414357@qq.com" <1992414357@qq.com> Date: Fri, 13 Jun 2025 19:20:06 +0800 Subject: . --- apps/console/Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 apps/console/Cargo.toml (limited to 'apps/console/Cargo.toml') diff --git a/apps/console/Cargo.toml b/apps/console/Cargo.toml new file mode 100644 index 0000000..8eef70d --- /dev/null +++ b/apps/console/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "nogamepads-console" +description = "This crate provides a set of tools for simulating and deploying the client and server of the NoGamepads library." +edition = "2024" +version.workspace = true + +[dependencies] +nogamepads = { path = "../../../NoGamepads" } +nogamepads-core = { path = "../../core" } +clap = { version = "4.5.38", features = ["derive"] } +clap_complete = "4.5.52" +serde = { version = "1.0.219", features = ["derive"] } +serde_yaml = "0.9.34" +tokio = { version = "1.45.0", features = ["full"] } +crossterm = "0.29.0" +log = "0.4.27" \ No newline at end of file -- cgit