mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* bugfixes * update fe types * implement new registry types in marketplace and ui * fix marketplace types to have default params * add alt implementation toggle * merge cleanup * more cleanup and notes * fix build * cleanup sync with next/minor * add exver JS parser * parse ValidExVer to string * update types to interface * add VersionRange and comparative functions * Parse ExtendedVersion from string * add conjunction, disjunction, and inversion logic * consider flavor in satisfiedBy fn * consider prerelease for ordering * add compare fn for sorting * rename fns for consistency * refactoring * update compare fn to return null if flavors don't match * begin simplifying dependencies * under construction * wip * add dependency metadata to CurrentDependencyInfo * ditch inheritance for recursive VersionRange constructor. Recursive 'satisfiedBy' fn wip * preprocess manifest * misc fixes * use sdk version as osVersion in manifest * chore: Change the type to just validate and not generate all solutions. * add publishedAt * fix pegjs exports * integrate exver into sdk * misc fixes * complete satisfiedBy fn * refactor - use greaterThanOrEqual and lessThanOrEqual fns * fix tests * update dependency details * update types * remove interim types * rename alt implementation to flavor * cleanup os update * format exver.ts * add s9pk parsing endpoints * fix build * update to exver * exver and bug fixes * update static endpoints + cleanup * cleanup * update static proxy verification * make mocks more robust; fix dep icon fallback; cleanup * refactor alert versions and update fixtures * registry bugfixes * misc fixes * cleanup unused * convert patchdb ui seed to camelCase * update otherVersions type * change otherVersions: null to 'none' * refactor and complete feature * improve static endpoints * fix install params * mask systemd-networkd-wait-online * fix static file fetching * include non-matching versions in otherVersions * convert release notes to modal and clean up displayExver * alert for no other versions * Fix ack-instructions casing * fix indeterminate loader on service install --------- Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: Shadowy Super Coder <musashidisciple@proton.me> Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Co-authored-by: J H <dragondef@gmail.com> Co-authored-by: Matt Hill <mattnine@protonmail.com>
211 lines
5.7 KiB
TOML
211 lines
5.7 KiB
TOML
[package]
|
|
authors = ["Aiden McClelland <me@drbonez.dev>"]
|
|
description = "The core of StartOS"
|
|
documentation = "https://docs.rs/start-os"
|
|
edition = "2021"
|
|
keywords = [
|
|
"self-hosted",
|
|
"raspberry-pi",
|
|
"privacy",
|
|
"bitcoin",
|
|
"full-node",
|
|
"lightning",
|
|
]
|
|
name = "start-os"
|
|
readme = "README.md"
|
|
repository = "https://github.com/Start9Labs/start-os"
|
|
version = "0.3.5-rev.2"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "startos"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "startbox"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "start-cli"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "containerbox"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "registrybox"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
cli = []
|
|
container-runtime = []
|
|
daemon = []
|
|
registry = []
|
|
default = ["cli", "daemon"]
|
|
dev = []
|
|
unstable = ["console-subscriber", "tokio/tracing"]
|
|
docker = []
|
|
test = []
|
|
|
|
[dependencies]
|
|
aes = { version = "0.7.5", features = ["ctr"] }
|
|
async-compression = { version = "0.4.4", features = [
|
|
"gzip",
|
|
"brotli",
|
|
"tokio",
|
|
] }
|
|
async-stream = "0.3.5"
|
|
async-trait = "0.1.74"
|
|
axum = { version = "0.7.3", features = ["ws"] }
|
|
axum-server = "0.6.0"
|
|
barrage = "0.2.3"
|
|
backhand = "0.18.0"
|
|
base32 = "0.5.0"
|
|
base64 = "0.22.1"
|
|
base64ct = "1.6.0"
|
|
basic-cookies = "0.1.4"
|
|
blake3 = { version = "1.5.0", features = ["mmap", "rayon"] }
|
|
bytes = "1"
|
|
chrono = { version = "0.4.31", features = ["serde"] }
|
|
clap = "4.4.12"
|
|
color-eyre = "0.6.2"
|
|
console = "0.15.7"
|
|
console-subscriber = { version = "0.3.0", optional = true }
|
|
cookie = "0.18.0"
|
|
cookie_store = "0.21.0"
|
|
der = { version = "0.7.9", features = ["derive", "pem"] }
|
|
digest = "0.10.7"
|
|
divrem = "1.0.0"
|
|
ed25519 = { version = "2.2.3", features = ["pkcs8", "pem", "alloc"] }
|
|
ed25519-dalek = { version = "2.1.1", features = [
|
|
"serde",
|
|
"zeroize",
|
|
"rand_core",
|
|
"digest",
|
|
"pkcs8",
|
|
] }
|
|
ed25519-dalek-v1 = { package = "ed25519-dalek", version = "1" }
|
|
exver = { version = "0.2.0", git = "https://github.com/Start9Labs/exver-rs.git", features = [
|
|
"serde",
|
|
] }
|
|
fd-lock-rs = "0.1.4"
|
|
form_urlencoded = "1.2.1"
|
|
futures = "0.3.28"
|
|
gpt = "3.1.0"
|
|
helpers = { path = "../helpers" }
|
|
hex = "0.4.3"
|
|
hmac = "0.12.1"
|
|
http = "1.0.0"
|
|
http-body-util = "0.1"
|
|
hyper-util = { version = "0.1.5", features = ["tokio", "service"] }
|
|
id-pool = { version = "0.2.2", default-features = false, features = [
|
|
"serde",
|
|
"u16",
|
|
] }
|
|
imbl = "2.0.3"
|
|
imbl-value = { git = "https://github.com/Start9Labs/imbl-value.git" }
|
|
include_dir = { version = "0.7.3", features = ["metadata"] }
|
|
indexmap = { version = "2.0.2", features = ["serde"] }
|
|
indicatif = { version = "0.17.7", features = ["tokio"] }
|
|
integer-encoding = { version = "4.0.0", features = ["tokio_async"] }
|
|
ipnet = { version = "2.8.0", features = ["serde"] }
|
|
iprange = { version = "0.6.7", features = ["serde"] }
|
|
isocountry = "0.3.2"
|
|
itertools = "0.13.0"
|
|
jaq-core = "0.10.1"
|
|
jaq-std = "0.10.0"
|
|
josekit = "0.8.4"
|
|
jsonpath_lib = { git = "https://github.com/Start9Labs/jsonpath.git" }
|
|
lazy_async_pool = "0.3.3"
|
|
lazy_format = "2.0"
|
|
lazy_static = "1.4.0"
|
|
libc = "0.2.149"
|
|
log = "0.4.20"
|
|
mbrman = "0.5.2"
|
|
models = { version = "*", path = "../models" }
|
|
new_mime_guess = "4"
|
|
nix = { version = "0.29.0", features = ["user", "process", "signal", "fs"] }
|
|
nom = "7.1.3"
|
|
num = "0.4.1"
|
|
num_enum = "0.7.0"
|
|
num_cpus = "1.16.0"
|
|
once_cell = "1.19.0"
|
|
openssh-keys = "0.6.2"
|
|
openssl = { version = "0.10.57", features = ["vendored"] }
|
|
p256 = { version = "0.13.2", features = ["pem"] }
|
|
patch-db = { version = "*", path = "../../patch-db/patch-db", features = [
|
|
"trace",
|
|
] }
|
|
pbkdf2 = "0.12.2"
|
|
pin-project = "1.1.3"
|
|
pkcs8 = { version = "0.10.2", features = ["std"] }
|
|
prettytable-rs = "0.10.0"
|
|
proptest = "1.3.1"
|
|
proptest-derive = "0.5.0"
|
|
rand = { version = "0.8.5", features = ["std"] }
|
|
regex = "1.10.2"
|
|
reqwest = { version = "0.12.4", features = ["stream", "json", "socks"] }
|
|
reqwest_cookie_store = "0.8.0"
|
|
rpassword = "7.2.0"
|
|
rpc-toolkit = { git = "https://github.com/Start9Labs/rpc-toolkit.git", branch = "refactor/no-dyn-ctx" }
|
|
rust-argon2 = "2.0.0"
|
|
rustyline-async = "0.4.1"
|
|
semver = { version = "1.0.20", features = ["serde"] }
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_cbor = { package = "ciborium", version = "0.2.1" }
|
|
serde_json = "1.0"
|
|
serde_toml = { package = "toml", version = "0.8.2" }
|
|
serde_urlencoded = "0.7"
|
|
serde_with = { version = "3.4.0", features = ["macros", "json"] }
|
|
serde_yaml = { package = "serde_yml", version = "0.0.10" }
|
|
sha2 = "0.10.2"
|
|
shell-words = "1"
|
|
simple-logging = "2.0.2"
|
|
socket2 = "0.5.7"
|
|
sqlx = { version = "0.7.2", features = [
|
|
"chrono",
|
|
"runtime-tokio-rustls",
|
|
"postgres",
|
|
] }
|
|
sscanf = "0.4.1"
|
|
ssh-key = { version = "0.6.2", features = ["ed25519"] }
|
|
tar = "0.4.40"
|
|
thiserror = "1.0.49"
|
|
textwrap = "0.16.1"
|
|
tokio = { version = "1.38.1", features = ["full"] }
|
|
tokio-rustls = "0.26.0"
|
|
tokio-socks = "0.5.1"
|
|
tokio-stream = { version = "0.1.14", features = ["io-util", "sync", "net"] }
|
|
tokio-tar = { git = "https://github.com/dr-bonez/tokio-tar.git" }
|
|
tokio-tungstenite = { version = "0.23.1", features = ["native-tls", "url"] }
|
|
tokio-util = { version = "0.7.9", features = ["io"] }
|
|
torut = { git = "https://github.com/Start9Labs/torut.git", branch = "update/dependencies", features = [
|
|
"serialize",
|
|
] }
|
|
tower-service = "0.3.2"
|
|
tracing = "0.1.39"
|
|
tracing-error = "0.2.0"
|
|
tracing-futures = "0.2.5"
|
|
tracing-journald = "0.3.0"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
trust-dns-server = "0.23.1"
|
|
ts-rs = { git = "https://github.com/dr-bonez/ts-rs.git", branch = "feature/top-level-as" } # "8.1.0"
|
|
typed-builder = "0.18.0"
|
|
url = { version = "2.4.1", features = ["serde"] }
|
|
urlencoding = "2.1.3"
|
|
uuid = { version = "1.4.1", features = ["v4"] }
|
|
zeroize = "1.6.0"
|
|
|
|
[profile.test]
|
|
opt-level = 3
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
|
|
[profile.dev.package.backtrace]
|
|
opt-level = 3
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
opt-level = 3
|