♻️ cli, vanth: Implement CLI commands and enhance store

- Added `write`, `get`, `get-all`, `delete`, and `delete-all` subcommands to the CLI.
- Refactored store operations to support raw type handling and removed `Vanth` trait requirement where possible.
- Implemented tracing-based logging with console output for improved observability.
- Improved SQLite store error handling with specific cases for missing tables.
- Added new dependencies including `tracing`, `tracing-subscriber`, `nu-ansi-term`, `sharded-slab`, and `valuable`.
- Removed `.zed/settings.json` editor configuration file.
This commit is contained in:
Markus Scully 2025-08-07 16:11:54 +03:00
parent 9e7979931c
commit a91d92b6ff
Signed by: mascully
GPG key ID: 93CA5814B698101C
10 changed files with 361 additions and 77 deletions

View file

@ -23,3 +23,5 @@ rusqlite = { version = "0.32.1", features = ["bundled"] }
tempfile = "3.12.0"
rand_core = "0.6.4"
rand_chacha = { version = "0.3.1", features = ["serde1"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"