From f8336ed832fa8e1ddd2f1783bdfc23d3279d5e6a Mon Sep 17 00:00:00 2001 From: "1992414357@qq.com" <1992414357@qq.com> Date: Tue, 27 May 2025 07:21:37 +0800 Subject: First commit --- core/Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 core/Cargo.toml (limited to 'core/Cargo.toml') diff --git a/core/Cargo.toml b/core/Cargo.toml new file mode 100644 index 0000000..fade27a --- /dev/null +++ b/core/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "nogamepads-core" + +homepage = "https://github.com/CatilGrass/NoGamepads" +repository = "https://github.com/CatilGrass/NoGamepads" +readme = "../README.md" + +version = "0.1.0" +edition = "2024" + +[dependencies] +nogamepads = { path = "../../NoGamepads" } +bincode = { version = "2.0.1", features = ["serde"]} +clearscreen = "4.0.1" +hex = "0.4.3" +tokio = { version = "1.45.0", features = ["full"] } +serde = { version = "1.0.219", features = ["derive"] } +clap = { version = "4.5.38", features = ["derive"] } +sha1 = "0.10.6" +log = "0.4.27" \ No newline at end of file -- cgit