mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* add support for idmapped mounts to start-sdk * misc fixes * misc fixes * add default to textarea * fix iptables masquerade rule * fix textarea types * more fixes * better logging for rsync * fix tty size * fix wg conf generation for android * disable file mounts on dependencies * mostly there, some styling issues (#3069) * mostly there, some styling issues * fix: address comments (#3070) * fix: address comments * fix: fix * show SSL for any address with secure protocol and ssl added * better sorting and messaging --------- Co-authored-by: Alex Inkin <alexander@inkin.ru> * fixes for nextcloud * allow sidebar navigation during service state traansitions * wip: x-forwarded headers * implement x-forwarded-for proxy * lowercase domain names and fix warning popover bug * fix http2 websockets * fix websocket retry behavior * add arch filters to s9pk pack * use docker for start-cli install * add version range to package signer on registry * fix rcs < 0 * fix user information parsing * refactor service interface getters * disable idmaps * build fixes * update docker login action * streamline build * add start-cli workflow * rename * riscv64gc * fix ui packing * no default features on cli * make cli depend on GIT_HASH * more build fixes * more build fixes * interpolate arch within dockerfile * fix tests * add launch ui to service page plus other small improvements (#3075) * add launch ui to service page plus other small improvements * revert translation disable * add spinner to service list if service is health and loading * chore: some visual tune up * chore: update Taiga UI --------- Co-authored-by: waterplea <alexander@inkin.ru> * fix backups * feat: use arm hosted runners and don't fail when apt package does not exist (#3076) --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> Co-authored-by: Shadowy Super Coder <musashidisciple@proton.me> Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com> Co-authored-by: Alex Inkin <alexander@inkin.ru> Co-authored-by: Remco Ros <remcoros@live.nl>
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "models"
|
|
version = "0.1.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
arti = ["arti-client"]
|
|
|
|
[dependencies]
|
|
arti-client = { version = "0.33", default-features = false, git = "https://github.com/Start9Labs/arti.git", branch = "patch/disable-exit", optional = true }
|
|
axum = "0.8.4"
|
|
base64 = "0.22.1"
|
|
color-eyre = "0.6.2"
|
|
ed25519-dalek = { version = "2.0.0", features = ["serde"] }
|
|
exver = { version = "0.2.0", git = "https://github.com/Start9Labs/exver-rs.git", features = [
|
|
"serde",
|
|
] }
|
|
gpt = "4.1.0"
|
|
ipnet = "2.8.0"
|
|
lazy_static = "1.4"
|
|
lettre = { version = "0.11", default-features = false }
|
|
mbrman = "0.6.0"
|
|
miette = "7.6.0"
|
|
num_enum = "0.7.1"
|
|
openssl = { version = "0.10.57", features = ["vendored"] }
|
|
patch-db = { version = "*", path = "../../patch-db/patch-db", features = [
|
|
"trace",
|
|
] }
|
|
rand = "0.9.1"
|
|
regex = "1.10.2"
|
|
reqwest = "0.12"
|
|
rpc-toolkit = { git = "https://github.com/Start9Labs/rpc-toolkit.git", branch = "master" }
|
|
rustls = "0.23"
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_json = "1.0"
|
|
ssh-key = "0.6.2"
|
|
hyper = "1.8.1"
|
|
thiserror = "2.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
torut = "0.2.1"
|
|
tracing = "0.1.39"
|
|
ts-rs = "9"
|
|
typeid = "1"
|
|
yasi = { version = "0.1.6", features = ["serde", "ts-rs"] }
|
|
zbus = "5"
|