30 lines
708 B
TOML
30 lines
708 B
TOML
[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",
|
|
]
|