mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* wip: Working on sockets, but can't connect? * simplify unix socket connection * wip: Get responses back from the server at least once. * WIP: Get the sockets working' * feat: Sockets can start/ stop/ config/ properites/ uninstall * fix: Restart services * Fix: Sockets work and can stop main and not kill client Co-authored-by: Aiden McClelland <me@drbonez.dev>
20 lines
604 B
TOML
20 lines
604 B
TOML
[package]
|
|
name = "helpers"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
color-eyre = "0.6.2"
|
|
futures = "0.3.21"
|
|
lazy_async_pool = "0.3.3"
|
|
models = { path = "../models" }
|
|
pin-project = "1.0.11"
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.23", features = ["full"] }
|
|
tokio-stream = { version = "0.1.9", features = ["io-util", "sync"] }
|
|
tracing = "0.1.35"
|
|
yajrc = { version = "*", git = "https://github.com/dr-bonez/yajrc.git", branch = "develop" }
|