summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-12-25 15:49:58 +0800
committer魏曹先生 <1992414357@qq.com>2025-12-25 17:41:34 +0800
commit0c030daa10120a53c9cc7283c6d5b08fd1623bae (patch)
tree0a9d5dc78b931fa21790171b7e6f4d5f1377ce36 /Cargo.lock
parentca29e7b2152260059417c142641cd19ddbb512c4 (diff)
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
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock23
1 files changed, 22 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cbb0ab1..17cd6a5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -953,12 +953,22 @@ version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
- "rand_chacha",
+ "rand_chacha 0.3.1",
"rand_core 0.6.4",
]
[[package]]
name = "rand"
+version = "0.9.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
+dependencies = [
+ "rand_chacha 0.9.0",
+ "rand_core 0.9.3",
+]
+
+[[package]]
+name = "rand"
version = "0.10.0-rc.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ec474812b9de55111b29da8a1559f1718ef3dc20fa36f031f1b5d9e3836ad6c"
@@ -978,6 +988,16 @@ dependencies = [
]
[[package]]
+name = "rand_chacha"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
+dependencies = [
+ "ppv-lite86",
+ "rand_core 0.9.3",
+]
+
+[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1534,6 +1554,7 @@ dependencies = [
"chrono",
"data_struct",
"dirs",
+ "rand 0.9.2",
"serde",
"sha1_hash",
"string_proc",