diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-02-27 06:17:06 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-02-27 06:17:06 +0800 |
| commit | 76e78fe53c03c9b4c7fa029709f06ee86ce9c865 (patch) | |
| tree | 4e3778dfb405b2c21b51df24331100b94f5356d9 /systems/storage/Cargo.toml | |
| parent | 748c8a3353df887ee4b01e0e1327aa95c1c7225a (diff) | |
Add storage system with chunk-based file storage
Diffstat (limited to 'systems/storage/Cargo.toml')
| -rw-r--r-- | systems/storage/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
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" |
