From 0c030daa10120a53c9cc7283c6d5b08fd1623bae Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 25 Dec 2025 15:49:58 +0800 Subject: Add sheet sharing functionality - Add `rand` dependency for generating share IDs - Update share path to include sheet name subdirectory - Add mutable accessor for sheet ID mapping - Add sheet_share module to vault data structures --- crates/vcs_data/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crates/vcs_data/Cargo.toml') diff --git a/crates/vcs_data/Cargo.toml b/crates/vcs_data/Cargo.toml index d1f7e94..1971b6a 100644 --- a/crates/vcs_data/Cargo.toml +++ b/crates/vcs_data/Cargo.toml @@ -16,6 +16,9 @@ string_proc = { path = "../utils/string_proc" } action_system = { path = "../system_action" } vcs_docs = { path = "../vcs_docs" } +# Random +rand = "0.9.2" + # Identity uuid = { version = "1.18.1", features = ["v4", "serde"] } whoami = "1.6.1" -- cgit