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-09 20:24:36 +0000
committeryuzu <yuzu@b9215c17-b818-4693-b096-d1e41a411fef>2025-07-09 20:24:36 +0000
commitbc0fac1bf2a02c9a76c8c4b9eccc9235de4e86b2 (patch)
treeaa8bd79bacddd6830453e8a8beb5ea976155c5fe /Cargo.toml
parentb2cf95ed207e42d1f57de1e5b5030af8c734103b (diff)
downloadsalaryman-bc0fac1bf2a02c9a76c8c4b9eccc9235de4e86b2.tar.gz
salaryman-bc0fac1bf2a02c9a76c8c4b9eccc9235de4e86b2.tar.bz2
salaryman-bc0fac1bf2a02c9a76c8c4b9eccc9235de4e86b2.zip
working network communication
git-svn-id: svn+ssh://diminuette.aengel.lesbianunix.dev/salaryman/trunk@13 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 703d37f..18432a7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,13 +7,21 @@ description = "A very simple service management framework"
 
 [features]
 default = ["smd"]
-smd = ["dep:clap", "dep:toml"]
+smd = [
+	"dep:clap",
+	"dep:dropshot",
+	"dep:schemars",
+	"dep:toml",
+]
 
 [dependencies]
 clap = { version = "4.5.39", features = ["derive"], optional = true }
+dropshot = { version = "0.16.2", features = ["usdt","usdt-probes"], optional = true }
+schemars = { version = "0.8.22", features = ["uuid1"], optional = true }
 serde = { version = "1.0.219", features = ["derive"] }
 tokio = { version = "1.45.1", features = ["full"] }
 toml = { version = "0.8.22", optional = true }
+uuid = { version = "1.17.0", features = ["v4", "serde"] }
 
 [[bin]]
 name = "smd"