From 76e78fe53c03c9b4c7fa029709f06ee86ce9c865 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 27 Feb 2026 06:17:06 +0800 Subject: Add storage system with chunk-based file storage --- systems/storage/Cargo.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 systems/storage/Cargo.toml (limited to 'systems/storage/Cargo.toml') diff --git a/systems/storage/Cargo.toml b/systems/storage/Cargo.toml new file mode 100644 index 0000000..5afb780 --- /dev/null +++ b/systems/storage/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "storage_system" +edition = "2024" +version.workspace = true + +[dependencies] +thiserror = "1.0.69" +tokio = { version = "1.48", features = ["full"] } + +blake3 = "1.5.0" +hex = "0.4.3" +memmap2 = "0.9.4" +log = "0.4.25" -- cgit