summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-02-27 06:17:06 +0800
committer魏曹先生 <1992414357@qq.com>2026-02-27 06:17:06 +0800
commit76e78fe53c03c9b4c7fa029709f06ee86ce9c865 (patch)
tree4e3778dfb405b2c21b51df24331100b94f5356d9 /Cargo.lock
parent748c8a3353df887ee4b01e0e1327aa95c1c7225a (diff)
Add storage system with chunk-based file storage
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock19
1 files changed, 19 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 291cf25..206f2fb 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -695,6 +695,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
+name = "hex"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
+
+[[package]]
name = "hex_display"
version = "0.1.0"
@@ -798,6 +804,7 @@ dependencies = [
"jvlib",
"sha1_hash",
"sheet_system",
+ "storage_system",
"tcp_connection",
"toml",
"vcs_actions",
@@ -1566,6 +1573,18 @@ dependencies = [
]
[[package]]
+name = "storage_system"
+version = "0.1.0"
+dependencies = [
+ "blake3",
+ "hex",
+ "log",
+ "memmap2",
+ "thiserror 1.0.69",
+ "tokio",
+]
+
+[[package]]
name = "subtle"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"