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

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