mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* rename frontend to web and update contributing guide * rename this time * fix build * restructure rust code * update documentation * update descriptions * Update CONTRIBUTING.md Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com> --------- Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com>
39 lines
963 B
TOML
39 lines
963 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]
|
|
base64 = "0.21.4"
|
|
color-eyre = "0.6.2"
|
|
ed25519-dalek = { version = "2.0.0", features = ["serde"] }
|
|
lazy_static = "1.4"
|
|
mbrman = "0.5.2"
|
|
emver = { version = "0.1", git = "https://github.com/Start9Labs/emver-rs.git", features = [
|
|
"serde",
|
|
] }
|
|
ipnet = "2.8.0"
|
|
openssl = { version = "0.10.57", features = ["vendored"] }
|
|
patch-db = { version = "*", path = "../../patch-db/patch-db", features = [
|
|
"trace",
|
|
] }
|
|
rand = "0.8.5"
|
|
regex = "1.10.2"
|
|
reqwest = "0.11.22"
|
|
rpc-toolkit = "0.2.2"
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_json = "1.0"
|
|
sqlx = { version = "0.7.2", features = [
|
|
"chrono",
|
|
"runtime-tokio-rustls",
|
|
"postgres",
|
|
] }
|
|
ssh-key = "0.6.2"
|
|
thiserror = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
torut = "0.2.1"
|
|
tracing = "0.1.39"
|
|
yasi = "0.1.5"
|