blob: fb4820f1ae998174fd9dd2b848d9fa50dce1bf6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[package]
name = "examples"
edition = "2024"
version.workspace = true
[[bin]]
name = "example_action_system"
path = "src/bin/example_action_system.rs"
[dependencies]
# Utils
tcp_connection = { path = "../crates/utils/tcp_connection" }
cfg_file = { path = "../crates/utils/cfg_file", features = ["default"] }
string_proc = { path = "../crates/utils/string_proc" }
# Core
action_system = { path = "../crates/system_action" }
# Async & Networking
tokio = { version = "1.48.0", features = ["full"] }
# Serialization
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
|