Private
Public Access
1
0

[cosmic] adds cosmic implementation (codex)

This commit is contained in:
2026-05-27 22:02:49 -07:00
parent 0173be356e
commit 3a113e3169
6 changed files with 8605 additions and 0 deletions

29
cosmic/Cargo.toml Normal file
View File

@@ -0,0 +1,29 @@
[package]
name = "kordophone-cosmic"
version = "0.1.0"
edition = "2024"
rust-version = "1.93"
[dependencies]
anyhow = "1"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
image = { version = "0.25", default-features = false, features = ["png"] }
kordophoned-client = { path = "../core/kordophoned-client" }
open = "5"
regex = "1"
tokio = { version = "1", features = ["rt"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2"
[dependencies.libcosmic]
path = "/home/buzzert/src/cosmic/libcosmic"
default-features = false
features = [
"advanced-shaping",
"multi-window",
"tokio",
"winit",
"wgpu",
"xdg-portal",
]