diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 10 |
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 |