ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/salaryman/trunk/Cargo.toml
Revision: 9
Committed: Tue Jul 8 07:12:59 2025 UTC (3 months ago) by yuzu
File size: 434 byte(s)
Log Message:
working proof of concept -- minecraft

File Contents

# Content
1 [package]
2 name = "salaryman"
3 version = "0.0.1"
4 edition = "2024"
5 authors = ["Ren Kararou <[email protected]>"]
6 description = "A very simple service management framework"
7
8 [dependencies]
9 clap = { version = "4.5.39", features = ["derive"] }
10 serde = { version = "1.0.219", features = ["derive"] }
11 tokio = { version = "1.45.1", features = ["full"] }
12 toml = "0.8.22"
13
14 [[bin]]
15 name = "smd"
16 path = "src/bin/smd.rs"
17 test = false
18 bench = false