Fork point: pop-os/libcosmic 1.0.0 + perf/quickwins-bundle + macOS window controls feature. From here the crate diverges under the yoda lineage with its own versioning. Changes: - Cargo.toml: name = libcosmic-yoda, version = 0.1.0-yoda - [lib] name = cosmic kept unchanged — consumer code still does 'use cosmic::...' - examples/*/Cargo.toml: updated all libcosmic dep references to libcosmic-yoda - i18n/*/libcosmic.ftl renamed to libcosmic_yoda.ftl (71 locales) to match the new name expected by fluent_language_loader!() macro cargo check --lib passes. Examples not yet validated — Phase 2 (Wayland-only cut) will rework them anyway.
20 lines
425 B
TOML
20 lines
425 B
TOML
[package]
|
|
name = "open-dialog"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["xdg-portal"]
|
|
rfd = ["libcosmic-yoda/rfd"]
|
|
xdg-portal = ["libcosmic-yoda/xdg-portal"]
|
|
|
|
[dependencies]
|
|
apply = "0.3.0"
|
|
tokio = { version = "1.49", features = ["full"] }
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = "0.3.22"
|
|
url = "2.5.8"
|
|
|
|
[dependencies.libcosmic-yoda]
|
|
features = ["debug", "winit", "wgpu", "wayland", "tokio"]
|
|
path = "../../"
|