Reverts the soft-fork pivot (6736a596). Strategy chosen with user:
full cascade fork. Every consumer (leyoda/cosmic-files + each leyoda/app)
depends on libcosmic-yoda by explicit path, so there are no transitive
deps left asking for the upstream 'libcosmic' crate — no [patch]
unification issues, no two-version traps.
Changes:
- Cargo.toml: name = libcosmic-yoda, version = 0.1.0-yoda
- i18n/*/libcosmic.ftl -> libcosmic_yoda.ftl (71 locales)
- examples/*/Cargo.toml dep refs back to libcosmic-yoda
- compat stub features (winit=[], x11=[]) kept for upstream deps that
might still request them during the migration window
cargo check --lib passes.
29 lines
513 B
TOML
29 lines
513 B
TOML
[package]
|
|
name = "cosmic"
|
|
version = "0.1.0"
|
|
authors = []
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
apply = "0.3.0"
|
|
fraction = "0.15.3"
|
|
libcosmic-yoda = { path = "../..", features = [
|
|
"debug",
|
|
"winit",
|
|
"tokio",
|
|
"single-instance",
|
|
"dbus-config",
|
|
"a11y",
|
|
"wgpu",
|
|
"xdg-portal",
|
|
] }
|
|
once_cell = "1.21"
|
|
slotmap = "1.1.1"
|
|
env_logger = "0.10"
|
|
log = "0.4.29"
|
|
|
|
[dependencies.cosmic-time]
|
|
git = "https://github.com/pop-os/cosmic-time"
|
|
default-features = false
|
|
features = ["once_cell"]
|