From c866b0da8548712c729c73b868a8ebd61821ce14 Mon Sep 17 00:00:00 2001 From: Weicao-CatilGrass <1992414357@qq.com> Date: Mon, 14 Apr 2025 01:49:04 +0800 Subject: 修改了项目名,从 PhantomLink-Gamepad 修改到了 ThereIsNoPads,这是我洗澡的时候灵机一动想出来的 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/Cargo.lock | 14 +++++++------- core/Cargo.toml | 6 +++--- core/server_test/Cargo.lock | 24 ++++++++++++------------ core/server_test/Cargo.toml | 6 ++++-- 4 files changed, 26 insertions(+), 24 deletions(-) (limited to 'core') diff --git a/core/Cargo.lock b/core/Cargo.lock index 3fff94f..2c4ada7 100644 --- a/core/Cargo.lock +++ b/core/Cargo.lock @@ -62,13 +62,6 @@ version = "0.2.171" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" -[[package]] -name = "phantomlink-gamepad-core" -version = "0.1.0" -dependencies = [ - "sha1", -] - [[package]] name = "sha1" version = "0.10.6" @@ -80,6 +73,13 @@ dependencies = [ "digest", ] +[[package]] +name = "there-is-nopads-core" +version = "0.1.0" +dependencies = [ + "sha1", +] + [[package]] name = "typenum" version = "1.18.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index 981c456..aa5b1ca 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,10 +1,10 @@ [package] -name = "phantomlink-gamepad-core" +name = "there-is-nopads-core" authors = [ "CatilGrass" ] description = "A mobile device control solution for local multiplayer gaming, featuring an in-game interface, controller client, and support for universal devices." -homepage = "https://github.com/CatilGrass/PhantomLink-Gamepad" -repository = "https://github.com/CatilGrass/PhantomLink-Gamepad" +homepage = "https://github.com/CatilGrass/ThereIsNoPads" +repository = "https://github.com/CatilGrass/ThereIsNoPads" readme = "../README.md" version = "0.1.0" diff --git a/core/server_test/Cargo.lock b/core/server_test/Cargo.lock index 0bb75b0..7879b5c 100644 --- a/core/server_test/Cargo.lock +++ b/core/server_test/Cargo.lock @@ -63,28 +63,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" [[package]] -name = "phantomlink-gamepad-core" -version = "0.1.0" +name = "sha1" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" dependencies = [ - "sha1", + "cfg-if", + "cpufeatures", + "digest", ] [[package]] -name = "phantomlink-server-test" +name = "there-is-nopads-core" version = "0.1.0" dependencies = [ - "phantomlink-gamepad-core", + "sha1", ] [[package]] -name = "sha1" -version = "0.10.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +name = "there-is-nopads-server-test" +version = "0.1.0" dependencies = [ - "cfg-if", - "cpufeatures", - "digest", + "there-is-nopads-core", ] [[package]] diff --git a/core/server_test/Cargo.toml b/core/server_test/Cargo.toml index 192aac9..dc29510 100644 --- a/core/server_test/Cargo.toml +++ b/core/server_test/Cargo.toml @@ -1,8 +1,10 @@ [package] -name = "phantomlink-server-test" +name = "there-is-nopads-server-test" authors = [ "CatilGrass" ] version = "0.1.0" edition = "2024" [dependencies] -phantomlink-gamepad-core = { path = "../../core" } \ No newline at end of file +there-is-nopads-core = { path = "../../core" } + +# Not A Controller \ No newline at end of file -- cgit