mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
* add clearnet functionality to frontend * add pattern and add sync db on rpcs * add domain pattern * show acme name instead of url if known * dont blow up if domain not present after delete * use common name for letsencrypt * normalize urls * refactor start-os ui net service * backend migration and rpcs for serverInfo.host * fix cors * implement clearnet for main startos ui * ability to add and remove tor addresses, including vanity * add guard to prevent duplicate addresses * misc bugfixes * better heuristics for launching UIs * fix ipv6 mocks * fix ipv6 display bug * rewrite url selection for launch ui --------- Co-authored-by: Aiden McClelland <me@drbonez.dev>
34 lines
936 B
TOML
34 lines
936 B
TOML
[package]
|
|
authors = ["Aiden McClelland <me@drbonez.dev>"]
|
|
edition = "2018"
|
|
name = "compat"
|
|
version = "0.1.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.40", features = ["backtrace"] }
|
|
beau_collector = "0.2.1"
|
|
clap = "2.33.3"
|
|
dashmap = "5.3.2"
|
|
start-os = { path = "../../core/startos", default-features = false }
|
|
emver = { version = "0.1.7", git = "https://github.com/Start9Labs/emver-rs.git", features = [
|
|
"serde",
|
|
] }
|
|
failure = "0.1.8"
|
|
indexmap = { version = "1.6.2", features = ["serde"] }
|
|
imbl-value = "0.1.2"
|
|
itertools = "0.10.0"
|
|
lazy_static = "1.4"
|
|
linear-map = { version = "1.2", features = ["serde_impl"] }
|
|
log = "0.4.11"
|
|
nix = "0.25.0"
|
|
pest = "2.1"
|
|
pest_derive = "2.1"
|
|
rand = "0.8.5"
|
|
regex = "1.4.2"
|
|
rust-argon2 = "1.0.0"
|
|
serde = { version = "1.0.118", features = ["derive", "rc"] }
|
|
serde_json = "1.0.67"
|
|
serde_yaml = "0.8.17"
|