diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-10-12 18:16:28 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-10-12 18:16:28 +0800 |
| commit | 19c5780c2ee4920916aa5d766e02faa27fe2af2a (patch) | |
| tree | d24bc3c9aa4668fb879f81bed84846daee13b4cb /crates/vcs_actions/Cargo.toml | |
| parent | e8e0b6c230f6f7efb0f5773dc49f4a5d619fdbc4 (diff) | |
chore: Update dependencies and module exports
- Add required dependencies for action system
- Export registry modules in vcs_actions library
Diffstat (limited to 'crates/vcs_actions/Cargo.toml')
| -rw-r--r-- | crates/vcs_actions/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crates/vcs_actions/Cargo.toml b/crates/vcs_actions/Cargo.toml index e5a07f6..6735d43 100644 --- a/crates/vcs_actions/Cargo.toml +++ b/crates/vcs_actions/Cargo.toml @@ -13,3 +13,16 @@ string_proc = { path = "../utils/string_proc" } # Core dependencies action_system = { path = "../system_action" } vcs_data = { path = "../vcs_data" } + +# Error handling +thiserror = "1.0.69" + +# Serialization +serde = { version = "1.0.219", features = ["derive"] } +serde_json = "1.0.140" + +# Async & Networking +tokio = { version = "1.46.1", features = ["full"] } + +# Logging +log = "0.4.28" |
