[package] authors = ["Aiden McClelland "] description = "The core of the Start9 Embassy Operating System" documentation = "https://docs.rs/embassy-os" edition = "2021" keywords = [ "self-hosted", "raspberry-pi", "privacy", "bitcoin", "full-node", "lightning", ] name = "embassy-os" readme = "README.md" repository = "https://github.com/Start9Labs/embassy-os" version = "0.3.3" [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" [[bin]] name = "avahi-alias" path = "src/bin/avahi-alias.rs" [features] avahi = ["avahi-sys"] default = ["avahi", "js_engine"] dev = [] unstable = ["patch-db/unstable"] [dependencies] aes = { version = "0.7.5", features = ["ctr"] } async-stream = "0.3.3" async-trait = "0.1.56" avahi-sys = { git = "https://github.com/Start9Labs/avahi-sys", version = "0.10.0", branch = "feature/dynamic-linking", features = [ "dynamic", ], optional = true } base32 = "0.4.0" base64 = "0.13.0" base64ct = "1.5.1" basic-cookies = "0.1.4" bollard = "0.13.0" bytes = "1" chrono = { version = "0.4.19", features = ["serde"] } clap = "3.2.8" color-eyre = "0.6.1" cookie_store = "0.16.1" current_platform = "0.2.0" digest = "0.10.3" digest-old = { package = "digest", version = "0.9.0" } divrem = "1.0.0" ed25519 = { version = "1.5.2", features = ["pkcs8", "pem", "alloc"] } ed25519-dalek = { version = "1.0.1", features = ["serde"] } emver = { version = "0.1.7", git = "https://github.com/Start9Labs/emver-rs.git", features = [ "serde", ] } fd-lock-rs = "0.1.4" futures = "0.3.21" git-version = "0.3.5" helpers = { path = "../libs/helpers" } embassy_container_init = { path = "../libs/embassy_container_init" } hex = "0.4.3" hmac = "0.12.1" http = "0.2.8" hyper = { version = "0.14.20", features = ["full"] } hyper-ws-listener = "0.2.0" imbl = "2.0.0" indexmap = { version = "1.9.1", features = ["serde"] } isocountry = "0.3.2" itertools = "0.10.3" josekit = "0.8.1" js_engine = { path = '../libs/js_engine', optional = true } jsonpath_lib = "0.3.0" lazy_static = "1.4.0" libc = "0.2.126" log = "0.4.17" mbrman = "0.5.0" models = { version = "*", path = "../libs/models" } nix = "0.25.0" nom = "7.1.1" num = "0.4.0" num_enum = "0.5.7" openssh-keys = "0.5.0" openssl = { version = "0.10.41", features = ["vendored"] } patch-db = { version = "*", path = "../patch-db/patch-db", features = [ "trace", ] } pbkdf2 = "0.11.0" pin-project = "1.0.11" pkcs8 = { version = "0.9.0", features = ["std"] } prettytable-rs = "0.9.0" proptest = "1.0.0" proptest-derive = "0.3.0" rand = { version = "0.8.5", features = ["std"] } rand-old = { package = "rand", version = "0.7.3" } regex = "1.6.0" reqwest = { version = "0.11.11", features = ["stream", "json", "socks"] } reqwest_cookie_store = "0.4.0" rpassword = "7.0.0" rpc-toolkit = "0.2.2" rust-argon2 = "1.0.0" scopeguard = "1.1" # because avahi-sys fucks your shit up serde = { version = "1.0.139", features = ["derive", "rc"] } serde_cbor = { package = "ciborium", version = "0.2.0" } serde_json = "1.0.82" serde_toml = { package = "toml", version = "0.5.9" } serde_with = { version = "2.0.1", features = ["macros", "json"] } serde_yaml = "0.9.11" sha2 = "0.10.2" sha2-old = { package = "sha2", version = "0.9.9" } simple-logging = "2.0.2" sqlx = { version = "0.6.0", features = [ "chrono", "offline", "runtime-tokio-rustls", "postgres", ] } stderrlog = "0.5.3" tar = "0.4.38" thiserror = "1.0.31" tokio = { version = "1.21.2", features = ["full"] } tokio-stream = { version = "0.1.9", features = ["io-util", "sync"] } tokio-tar = { git = "https://github.com/dr-bonez/tokio-tar.git" } tokio-tungstenite = { version = "0.17.1", features = ["native-tls"] } tokio-rustls = "0.23.4" tokio-util = { version = "0.7.3", features = ["io"] } torut = "0.2.1" tracing = "0.1.35" tracing-error = "0.2.0" tracing-futures = "0.2.5" tracing-subscriber = { version = "0.3.14", features = ["env-filter"] } trust-dns-server = "0.22.0" typed-builder = "0.10.0" url = { version = "2.2.2", features = ["serde"] } uuid = { version = "1.1.2", features = ["v4"] } [profile.test] opt-level = 3 [profile.dev.package.backtrace] opt-level = 3 [profile.dev.package.sqlx-macros] opt-level = 3