diff --git a/Cargo.lock b/Cargo.lock index 24233fa..b4bab21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -57,30 +57,12 @@ version = "1.0.86" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" -[[package]] -name = "bitvec" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" -dependencies = [ - "funty", - "radium", - "tap", - "wyz", -] - [[package]] name = "cfg-if" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -[[package]] -name = "circular-buffer" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da987586004ae7c43b7df5e3f7693775068522e1086f8d9b2d74c778a0f43313" - [[package]] name = "clap" version = "4.5.9" @@ -177,12 +159,6 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" -[[package]] -name = "funty" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" - [[package]] name = "hashbrown" version = "0.14.5" @@ -229,15 +205,12 @@ name = "innodb_recovery" version = "0.1.0" dependencies = [ "anyhow", - "bitvec", - "circular-buffer", "clap", "crc", "indicatif", "memmap2", "num_enum", "pretty-hex", - "simple_endian", "sqlparser", "struson", "tracing", @@ -410,12 +383,6 @@ dependencies = [ "proc-macro2", ] -[[package]] -name = "radium" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" - [[package]] name = "rustversion" version = "1.0.17" @@ -431,12 +398,6 @@ dependencies = [ "lazy_static", ] -[[package]] -name = "simple_endian" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "872b1ba2925d84fd02d5a3a0b7196b7b681cda5d64a214c6bb1aafb3827c458f" - [[package]] name = "smallvec" version = "1.13.2" @@ -512,12 +473,6 @@ dependencies = [ "unicode-ident", ] -[[package]] -name = "tap" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" - [[package]] name = "thiserror" version = "1.0.63" @@ -755,12 +710,3 @@ checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" dependencies = [ "memchr", ] - -[[package]] -name = "wyz" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" -dependencies = [ - "tap", -] diff --git a/Cargo.toml b/Cargo.toml index 143f640..10b888e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,15 +8,12 @@ default-run="page_explorer" [dependencies] anyhow = "1.0.86" -bitvec = "1.0.1" -circular-buffer = "0.1.7" clap = { version = "4.5.9", features = ["derive"] } crc = "3.2.1" indicatif = "0.17.8" memmap2 = "0.9.4" num_enum = "0.7.2" pretty-hex = "0.4.1" -simple_endian = "0.3.2" sqlparser = "0.49.0" struson = "0.5.0" tracing = "0.1.40"