diff --git a/plugins/8.18-song-limit/Cargo.lock b/plugins/8.18-song-limit/Cargo.lock index 7ff4124..93da8dc 100644 --- a/plugins/8.18-song-limit/Cargo.lock +++ b/plugins/8.18-song-limit/Cargo.lock @@ -2,36 +2,12 @@ # It is not intended for manual editing. version = 3 -[[package]] -name = "asm_codegen" -version = "0.1.0" -dependencies = [ - "rand", -] - [[package]] name = "bitflags" version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "getrandom" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" -dependencies = [ - "cfg-if", - "libc", - "wasi", -] - [[package]] name = "libc" version = "0.2.135" @@ -47,42 +23,6 @@ dependencies = [ "libc", ] -[[package]] -name = "ppv-lite86" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" - -[[package]] -name = "rand" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" -dependencies = [ - "libc", - "rand_chacha", - "rand_core", -] - -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", - "rand_core", -] - -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom", -] - [[package]] name = "region" version = "3.0.0" @@ -99,18 +39,11 @@ dependencies = [ name = "song-limit-8-18" version = "0.1.0" dependencies = [ - "asm_codegen", "libc", "region", "winapi", ] -[[package]] -name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" - [[package]] name = "winapi" version = "0.3.9" diff --git a/plugins/8.18-song-limit/Cargo.toml b/plugins/8.18-song-limit/Cargo.toml index 48ba39d..3211135 100644 --- a/plugins/8.18-song-limit/Cargo.toml +++ b/plugins/8.18-song-limit/Cargo.toml @@ -8,6 +8,5 @@ crate-type = ["cdylib"] [dependencies] libc = "0.2.133" -asm_codegen = { path = "/home/brogamer/asm_macros/asm_codegen" } region = "3.0.0" winapi = { version = "0.3.9", features = ["libloaderapi"] }