about summary refs log tree commit diff stats
path: root/Cargo.toml
diff options
context:
space:
mode:
authoryuzu <yuzu@b9215c17-b818-4693-b096-d1e41a411fef>2025-07-08 07:12:59 +0000
committeryuzu <yuzu@b9215c17-b818-4693-b096-d1e41a411fef>2025-07-08 07:12:59 +0000
commit141e546e1d7a8385817b3edb46bd91b502563cd9 (patch)
treee215d8e4d4c79fee4b94e527cef8522b27ba5cec /Cargo.toml
parent8f05a437d80a243e504b4fb5d26b53bbd7de9c47 (diff)
downloadsalaryman-141e546e1d7a8385817b3edb46bd91b502563cd9.tar.gz
salaryman-141e546e1d7a8385817b3edb46bd91b502563cd9.tar.bz2
salaryman-141e546e1d7a8385817b3edb46bd91b502563cd9.zip
working proof of concept -- minecraft
git-svn-id: svn+ssh://diminuette.aengel.lesbianunix.dev/salaryman/trunk@9 b9215c17-b818-4693-b096-d1e41a411fef
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index be9af33..7518b99 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,10 +1,18 @@
 [package]
 name = "salaryman"
-version = "0.1.0"
+version = "0.0.1"
 edition = "2024"
+authors = ["Ren Kararou <[email protected]>"]
+description = "A very simple service management framework"
 
 [dependencies]
 clap = { version = "4.5.39", features = ["derive"] }
 serde = { version = "1.0.219", features = ["derive"] }
 tokio = { version = "1.45.1", features = ["full"] }
 toml = "0.8.22"
+
+[[bin]]
+name = "smd"
+path = "src/bin/smd.rs"
+test = false
+bench = false