mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* fix: Cleanup by sending a command and kill when dropped * chore: Fix the loadModule run command * fix: cleans up failed health * refactor long-running * chore: Fixes?" * refactor * run iso ci on pr * fix debuild * fix tests * switch to libc kill * kill process by parent * fix graceful shutdown * recurse submodules * fix compat build * feat: Add back in the timeout * chore: add the missing types for the unnstable * inherited logs Co-authored-by: J M <Blu-J@users.noreply.github.com> * fix deleted code Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: J M <Blu-J@users.noreply.github.com>
34 lines
872 B
TOML
34 lines
872 B
TOML
[package]
|
|
name = "models"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bollard = "0.13.0"
|
|
color-eyre = "0.6.1"
|
|
ed25519-dalek = { version = "1.0.1", features = ["serde"] }
|
|
mbrman = "0.5.0"
|
|
emver = { version = "0.1", git = "https://github.com/Start9Labs/emver-rs.git", features = [
|
|
"serde",
|
|
] }
|
|
openssl = { version = "0.10.41", features = ["vendored"] }
|
|
patch-db = { version = "*", path = "../../patch-db/patch-db", features = [
|
|
"trace",
|
|
] }
|
|
rand = "0.8"
|
|
rpc-toolkit = "0.2.1"
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_json = "1.0.82"
|
|
sqlx = { version = "0.6.0", features = [
|
|
"chrono",
|
|
"offline",
|
|
"runtime-tokio-rustls",
|
|
"postgres",
|
|
] }
|
|
thiserror = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
torut = "0.2.1"
|
|
tracing = "0.1.35"
|