Ports every remaining view (Keybinds, the last one — dual Flat/MultiLayout schema detection, per-action dedicated fields with a raw-JSON fallback for anything not modeled) and removes the now-fully-dead GTK4 crate (root Cargo.toml + src/), leaving src-tauri/ as the single Rust binary crate. Also folds in the UX pass done alongside the migration: responsive multi-column layout instead of a single centered column, chip/dropdown pickers replacing free-typed fields (Wi-Fi networks, Bar style, keyboard layout, tag lists), consistent pill-switch toggles and boxed-list card styling across every page, and a sidebar scroll-chaining fix.
36 lines
1.3 KiB
TOML
36 lines
1.3 KiB
TOML
[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 = [] }
|
|
|
|
[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"
|
|
# TODO(owner): switch to a tag-pinned git dependency once bread-theme cuts a
|
|
# release including css_custom_properties/css_tokens (added 2026-07-21 for
|
|
# this migration, unreleased) — matches the same pending-tag pattern
|
|
# bos-settings' old GTK Cargo.toml used for bread-utils.
|
|
bread-theme = { path = "../../bread-ecosystem/bread-theme" }
|
|
bread-utils = { path = "../../bread-ecosystem/bread-utils", features = ["toml"] }
|
|
|