summaryrefslogtreecommitdiff
path: root/crates/system_action/Cargo.toml
blob: 54ae454b9cb245c37a8f99b0aad2aadabd626628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[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"] }
serde_json = "1.0.140"

# Async & Networking
tokio = { version = "1.46.1", features = ["full"] }