37 lines
1.4 KiB
TOML
37 lines
1.4 KiB
TOML
[package]
|
|
name = "cosmic-app-list"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
cosmic-panel-config = {git = "https://github.com/pop-os/cosmic-panel", features = ["gtk4"] }
|
|
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", default-features = false, features = ["client"] }
|
|
cascade = "1.0.0"
|
|
gtk4 = { git = "https://github.com/gtk-rs/gtk4-rs", features = ["v4_4"] }
|
|
adw = { git = "https://gitlab.gnome.org/World/Rust/libadwaita-rs", package = "libadwaita"}
|
|
libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false }
|
|
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
|
|
relm4-macros = { git = "https://github.com/Relm4/Relm4.git", branch = "next" }
|
|
serde_json = "1.0.78"
|
|
futures = "0.3.19"
|
|
futures-util = "0.3.19"
|
|
once_cell = "1.9.0"
|
|
xdg = "2.4.0"
|
|
gsk4 = { git = "https://github.com/gtk-rs/gtk4-rs" }
|
|
pretty_env_logger = "0.4"
|
|
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
|
|
i18n-embed-fl = "0.6.4"
|
|
rust-embed = "6.3.0"
|
|
calloop = "0.10.1"
|
|
wayland-backend = { version = "0.1.0-beta.7" }
|
|
wayland-client = { version = "0.30.0-beta.7" }
|
|
nix = "0.24.1"
|
|
# config
|
|
anyhow = "1.0.53"
|
|
ron = "0.7.0"
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
log = "0.4"
|
|
|
|
[build-dependencies]
|
|
glib-build-tools = { git = "https://github.com/gtk-rs/gtk-rs-core" }
|