From 2965ca7dac27c1023a2880e5496fb45a78264d3c Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 1 Dec 2025 21:40:40 +0800 Subject: Refactor vault config to use template-based generation - Replace direct serialization with template-based config file generation - Add new dependencies: whoami, redox_syscall, wasite, web-sys - Update VaultConfig structure with new enum types and serialization attributes - Modify setup_vault to accept vault_name parameter and use template - Update all test calls to include vault_name parameter --- crates/vcs_data/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/vcs_data/Cargo.toml') diff --git a/crates/vcs_data/Cargo.toml b/crates/vcs_data/Cargo.toml index 3093809..d1f7e94 100644 --- a/crates/vcs_data/Cargo.toml +++ b/crates/vcs_data/Cargo.toml @@ -18,6 +18,7 @@ vcs_docs = { path = "../vcs_docs" } # Identity uuid = { version = "1.18.1", features = ["v4", "serde"] } +whoami = "1.6.1" # Serialization serde = { version = "1.0.228", features = ["derive"] } -- cgit