[package] name = "bos-settings" version = "0.8.0" description = "System settings app for BOS (Bread Operating System)" authors = ["Breadway"] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] # The `_lib` suffix may seem redundant but it is necessary # to make the lib name unique and wouldn't conflict with the bin name. # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 name = "bos_settings_lib" crate-type = ["staticlib", "cdylib", "rlib"] [build-dependencies] tauri-build = { version = "2", features = [] } [features] # Default-on so a plain `cargo build --release` produces a standalone binary # that embeds the built frontend instead of loading it from `devUrl` — # `cargo tauri dev` strips this back off via `--no-default-features` so dev # builds keep talking to the Vite dev server. See # https://v2.tauri.app/reference/cargo-features/#custom-protocol default = ["custom-protocol"] custom-protocol = ["tauri/custom-protocol"] [dependencies] tauri = { version = "2", features = ["protocol-asset"] } tauri-plugin-opener = "2" tauri-plugin-dialog = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" toml_edit = "0.22" tokio = { version = "1", features = ["process", "io-util", "time", "macros"] } notify = "7" regex = "1" bread-theme = { git = "https://git.breadway.dev/Breadway/bread-ecosystem", tag = "v0.7.1" } bread-utils = { git = "https://git.breadway.dev/Breadway/bread-ecosystem", tag = "v0.7.1", features = ["toml"] } anyhow = "1"