28 lines
517 B
TOML
28 lines
517 B
TOML
[package]
|
|
name = "applet"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
once_cell = "1"
|
|
rust-embed = "8.0.0"
|
|
tracing = "0.1"
|
|
env_logger = "0.10.0"
|
|
log = "0.4.17"
|
|
|
|
[dependencies.libcosmic]
|
|
git = "https://github.com/pop-os/libcosmic"
|
|
default-features = false
|
|
features = [
|
|
"applet",
|
|
"applet-token",
|
|
"multi-window",
|
|
"tokio",
|
|
"wayland",
|
|
"winit",
|
|
"desktop",
|
|
"dbus-config",
|
|
"image",
|
|
]
|