mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 20:43:41 +00:00
appmgr: split bins update cargo.toml and .gitignore context appmgr: refactor error module appmgr: context begin new s9pk format appmgr: add fields to manifest appmgr: start action abstraction appmgr: volume abstraction appmgr: improved volumes appmgr: install wip appmgr: health daemon appmgr: health checks appmgr: wip config get appmgr: secret store wip appmgr: config rewritten appmgr: delete non-reusable code appmgr: wip appmgr: please the borrow-checker appmgr: technically runs now appmgr: cli appmgr: clean up cli appmgr: rpc-toolkit in action appmgr: wrap up config appmgr: account for updates during install appmgr: fix: #308 appmgr: impl Display for Version appmgr: cleanup appmgr: set dependents on install appmgr: dependency health checks
84 lines
2.2 KiB
TOML
84 lines
2.2 KiB
TOML
[package]
|
|
authors = ["Aiden McClelland <me@drbonez.dev>"]
|
|
edition = "2018"
|
|
name = "embassy"
|
|
version = "0.3.0"
|
|
|
|
[lib]
|
|
name = "embassy"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "embassyd"
|
|
path = "src/bin/embassyd.rs"
|
|
|
|
[[bin]]
|
|
name = "embassy-init"
|
|
path = "src/bin/embassy-init.rs"
|
|
|
|
[[bin]]
|
|
name = "embassy-sdk"
|
|
path = "src/bin/embassy-sdk.rs"
|
|
|
|
[[bin]]
|
|
name = "embassy-cli"
|
|
path = "src/bin/embassy-cli.rs"
|
|
|
|
[features]
|
|
avahi = ["avahi-sys"]
|
|
default = ["avahi"]
|
|
portable = []
|
|
production = []
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.40"
|
|
async-trait = "0.1.42"
|
|
avahi-sys = { git = "https://github.com/Start9Labs/avahi-sys", branch = "feature/dynamic-linking", features = [
|
|
"dynamic",
|
|
], optional = true }
|
|
base32 = "0.4.0"
|
|
bollard = "0.10.1"
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
clap = "2.33"
|
|
digest = "0.9.0"
|
|
ed25519-dalek = { version = "1.0.1", features = ["serde"] }
|
|
emver = { version = "0.1.2", features = ["serde"] }
|
|
futures = "0.3.8"
|
|
git-version = "0.3.4"
|
|
http = "0.2.3"
|
|
id-pool = { version = "0.2.1", features = ["u16", "serde"], default-features = false }
|
|
indexmap = { version = "1.6.2", features = ["serde"] }
|
|
itertools = "0.10.0"
|
|
jsonpath_lib = "0.2.6"
|
|
lazy_static = "1.4"
|
|
libc = "0.2.86"
|
|
log = "0.4.11"
|
|
nix = "0.20.0"
|
|
openssl = "0.10.30"
|
|
patch-db = { path = "../../patch-db/patch-db" }
|
|
pin-project = "1.0.6"
|
|
prettytable-rs = "0.8.0"
|
|
rand = "0.8.3"
|
|
regex = "1.4.2"
|
|
reqwest = { version = "0.11.2", features = ["stream", "json"] }
|
|
rpassword = "5.0.0"
|
|
rpc-toolkit = { version = "*", path = "../../rpc-toolkit/rpc-toolkit" }
|
|
rust-argon2 = "0.8.3"
|
|
scopeguard = "1.1" # because avahi-sys fucks your shit up
|
|
serde = { version = "1.0.118", features = ["derive", "rc"] }
|
|
serde_cbor = "0.11.1"
|
|
serde_json = "1.0.59"
|
|
serde_toml = { package = "toml", version = "0.5.8" }
|
|
serde_yaml = "0.8.14"
|
|
sha2 = "0.9.3"
|
|
simple-logging = "2.0"
|
|
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "sqlite"] }
|
|
thiserror = "1.0.24"
|
|
tokio = { version = "1.5.0", features = ["full"] }
|
|
tokio-compat-02 = "0.2.0"
|
|
tokio-stream = { version = "0.1.5", features = ["io-util"] }
|
|
tokio-tar = "0.3.0"
|
|
tokio-util = { version = "0.6.6", features = ["io"] }
|
|
typed-builder = "0.9.0"
|
|
url = { version = "2.2.1", features = ["serde"] }
|