From 936359b896aa5340abb8aeb40a5eb7da65904b5c Mon Sep 17 00:00:00 2001 From: mlokr Date: Fri, 20 Sep 2024 07:59:40 +0200 Subject: [PATCH] removing hbcb --- Cargo.lock | 215 +---------------------------------------------------- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 215 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3fb8300..49297bc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,131 +2,16 @@ # It is not intended for manual editing. version = 3 -[[package]] -name = "ahash" -version = "0.8.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" -dependencies = [ - "cfg-if", - "once_cell", - "version_check", - "zerocopy", -] - -[[package]] -name = "arbitrary" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" - -[[package]] -name = "bumpalo" -version = "3.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "cranelift-bforest" -version = "0.113.0" -source = "git+https://github.com/jakubDoka/wasmtime.git#9831bdd139ec6ad205707db5a3125778e6f4f16c" -dependencies = [ - "cranelift-entity", -] - -[[package]] -name = "cranelift-bitset" -version = "0.113.0" -source = "git+https://github.com/jakubDoka/wasmtime.git#9831bdd139ec6ad205707db5a3125778e6f4f16c" - -[[package]] -name = "cranelift-codegen" -version = "0.113.0" -source = "git+https://github.com/jakubDoka/wasmtime.git#9831bdd139ec6ad205707db5a3125778e6f4f16c" -dependencies = [ - "bumpalo", - "cranelift-bforest", - "cranelift-bitset", - "cranelift-codegen-meta", - "cranelift-codegen-shared", - "cranelift-control", - "cranelift-entity", - "cranelift-isle", - "hashbrown", - "log", - "regalloc2 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hash", - "smallvec", - "target-lexicon", -] - -[[package]] -name = "cranelift-codegen-meta" -version = "0.113.0" -source = "git+https://github.com/jakubDoka/wasmtime.git#9831bdd139ec6ad205707db5a3125778e6f4f16c" -dependencies = [ - "cranelift-codegen-shared", -] - -[[package]] -name = "cranelift-codegen-shared" -version = "0.113.0" -source = "git+https://github.com/jakubDoka/wasmtime.git#9831bdd139ec6ad205707db5a3125778e6f4f16c" - -[[package]] -name = "cranelift-control" -version = "0.113.0" -source = "git+https://github.com/jakubDoka/wasmtime.git#9831bdd139ec6ad205707db5a3125778e6f4f16c" -dependencies = [ - "arbitrary", -] - -[[package]] -name = "cranelift-entity" -version = "0.113.0" -source = "git+https://github.com/jakubDoka/wasmtime.git#9831bdd139ec6ad205707db5a3125778e6f4f16c" -dependencies = [ - "cranelift-bitset", -] - -[[package]] -name = "cranelift-isle" -version = "0.113.0" -source = "git+https://github.com/jakubDoka/wasmtime.git#9831bdd139ec6ad205707db5a3125778e6f4f16c" - [[package]] name = "hashbrown" version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" -dependencies = [ - "ahash", -] [[package]] name = "hbbytecode" version = "0.1.0" -[[package]] -name = "hbcb" -version = "0.1.0" -dependencies = [ - "cranelift-codegen", - "cranelift-codegen-meta", - "cranelift-control", - "cranelift-isle", - "log", - "regalloc2 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec", - "target-lexicon", -] - [[package]] name = "hbjit" version = "0.1.0" @@ -137,7 +22,7 @@ version = "0.1.0" dependencies = [ "hbbytecode", "hbvm", - "regalloc2 0.10.2 (git+https://github.com/jakubDoka/regalloc2)", + "regalloc2", ] [[package]] @@ -161,12 +46,6 @@ version = "0.2.158" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" -[[package]] -name = "log" -version = "0.4.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" - [[package]] name = "memmap2" version = "0.9.5" @@ -176,43 +55,6 @@ dependencies = [ "libc", ] -[[package]] -name = "once_cell" -version = "1.19.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" - -[[package]] -name = "proc-macro2" -version = "1.0.86" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "quote" -version = "1.0.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "regalloc2" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12908dbeb234370af84d0579b9f68258a0f67e201412dd9a2814e6f45b2fc0f0" -dependencies = [ - "hashbrown", - "log", - "rustc-hash", - "slice-group-by", - "smallvec", -] - [[package]] name = "regalloc2" version = "0.10.2" @@ -229,67 +71,12 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" -[[package]] -name = "slice-group-by" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" - [[package]] name = "smallvec" version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" -[[package]] -name = "syn" -version = "2.0.77" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "target-lexicon" -version = "0.12.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" - -[[package]] -name = "unicode-ident" -version = "1.0.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" - -[[package]] -name = "version_check" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" - [[package]] name = "xtask" version = "0.1.0" - -[[package]] -name = "zerocopy" -version = "0.7.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" -dependencies = [ - "zerocopy-derive", -] - -[[package]] -name = "zerocopy-derive" -version = "0.7.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] diff --git a/Cargo.toml b/Cargo.toml index fbc1d6d..acb9024 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [workspace] resolver = "2" -members = ["hbbytecode", "hbvm", "hbxrt", "xtask", "hblang", "hbjit", "hbcb"] +members = ["hbbytecode", "hbvm", "hbxrt", "xtask", "hblang", "hbjit"] [profile.release] strip = true