diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-12-01 22:21:57 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-12-01 22:21:57 +0800 |
| commit | 899e109f6ef3a32c25f75aec5690bb800c3466ac (patch) | |
| tree | 98eb5bae5a40d41f891ffa67f92561c91df14b60 /Cargo.lock | |
| parent | f28a6f1f3460252a7e7fe4b8e4a1ef150e587f38 (diff) | |
Add --show-log flag and refactor vault setup
- Add `--show-log` flag to override profile logger setting - Add
validation for conflicting `--no-log` and `--show-log` flags - Refactor
`Vault::setup_vault` to accept vault name parameter - Update logger
initialization to respect configured log level - Add new dependencies:
`whoami`, `redox_syscall`, `wasite`, `web-sys` - Add error message for
conflicting log flags in locales
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -1003,6 +1003,7 @@ checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" dependencies = [ "bitflags 2.9.4", "libc", + "redox_syscall", ] [[package]] @@ -2021,6 +2022,7 @@ dependencies = [ "uuid", "vcs_docs", "walkdir", + "whoami", "winapi", ] @@ -2069,6 +2071,12 @@ dependencies = [ ] [[package]] +name = "wasite" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" + +[[package]] name = "wasm-bindgen" version = "0.2.104" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2128,6 +2136,27 @@ dependencies = [ ] [[package]] +name = "web-sys" +version = "0.3.81" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "whoami" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" +dependencies = [ + "libredox", + "wasite", + "web-sys", +] + +[[package]] name = "winapi" version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" |
