From 5677839d48e28050c9a6fc08a641e12e83e7433b Mon Sep 17 00:00:00 2001 From: weisd Date: Wed, 14 Aug 2024 17:03:53 +0800 Subject: [PATCH] test read xl.meta --- Cargo.lock | 8 ++++++++ ecstore/Cargo.toml | 2 ++ 2 files changed, 10 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index e3a0f133..06a9e298 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -313,6 +313,7 @@ version = "0.1.0" dependencies = [ "async-trait", "base64-simd", + "byteorder", "bytes", "crc32fast", "futures", @@ -342,6 +343,7 @@ dependencies = [ "transform-stream", "url", "uuid", + "xxhash-rust", ] [[package]] @@ -1831,6 +1833,12 @@ version = "0.52.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" +[[package]] +name = "xxhash-rust" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984" + [[package]] name = "zeroize" version = "1.8.1" diff --git a/ecstore/Cargo.toml b/ecstore/Cargo.toml index e593485e..ac8e1948 100644 --- a/ecstore/Cargo.toml +++ b/ecstore/Cargo.toml @@ -39,6 +39,8 @@ hex-simd = "0.8.0" path-clean = "1.0.1" tokio-stream = "0.1.15" rmp = "0.8.14" +byteorder = "1.5.0" +xxhash-rust = { version = "0.8.12", features = ["xxh64"] } [target.'cfg(not(windows))'.dependencies] openssl = "0.10.66"