blob: 120cb34fee597700ba3356b50d50071b2bd7c093 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[package]
name = "action_system"
edition = "2024"
version.workspace = true
[dependencies]
tcp_connection = { path = "../utils/tcp_connection" }
action_system_macros = { path = "action_macros" }
# Serialization
serde = { version = "1.0.219", features = ["derive"] }
# Async & Networking
tokio = { version = "1.46.1", features = ["full"] }
|