summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-10-13 11:17:00 +0800
committer魏曹先生 <1992414357@qq.com>2025-10-13 11:17:00 +0800
commit860fb317bca61ce66a2c98df933aa666dae0a43f (patch)
tree1aa4440e23b6344097958888aeef231ba4d9e9ba /Cargo.lock
parent635ded4f6815d738dd9b9b711aa4c7cf302d340b (diff)
feat: Add JSON-based action invocation to ActionPool
- Extend action_gen macro to generate JSON serialization logic - Implement generic action processing using JSON text for type-agnostic calls - Add callback mechanism with action name and arguments in ActionPool - Update client and server registries to use new callback system - Improve action system flexibility at the cost of serialization overhead
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock5
1 files changed, 5 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 247815e..b7911b5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -8,6 +8,7 @@ version = "0.1.0"
dependencies = [
"action_system_macros",
"serde",
+ "serde_json",
"tcp_connection",
"tokio",
]
@@ -18,6 +19,8 @@ version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
+ "serde",
+ "serde_json",
"string_proc",
"syn",
"tcp_connection",
@@ -419,6 +422,8 @@ version = "0.1.0"
dependencies = [
"action_system",
"cfg_file",
+ "serde",
+ "serde_json",
"string_proc",
"tcp_connection",
"tokio",