cli + user api

This commit is contained in:
JMARyA 2025-05-02 12:53:28 +02:00
parent 46cf2f4572
commit b010027549
12 changed files with 504 additions and 25 deletions

View file

@ -3,10 +3,18 @@ name = "sheepd"
version = "0.1.0"
edition = "2024"
[lib]
name = "sheepd"
path = "src/lib.rs"
[[bin]]
name = "sheepd"
path = "src/sheepd.rs"
[[bin]]
name = "sheepctl"
path = "src/sheepctl.rs"
[[bin]]
name = "herd"
path = "src/herd.rs"
@ -38,3 +46,6 @@ sage = { git = "https://git.hydrar.de/jmarya/sage" }
dashmap = "6.1.0"
ulid = { version = "1.2.1", features = ["serde"] }
chrono = "0.4.41"
directories = "6.0.0"
inquire = "0.7.5"
axum-extra = { version = "0.10.1", features = ["typed-header"] }