libcosmic/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

2021-11-16 09:36:54 -07:00
[package]
name = "libcosmic"
version = "0.1.0"
edition = "2021"
[dependencies]
cascade = "1"
derivative = "2"
2021-11-16 09:36:54 -07:00
gdk4 = "0.3.1"
gdk4-wayland = { version = "0.3", optional = true }
2021-11-16 09:36:54 -07:00
gdk4-x11 = "0.3.0"
2021-11-16 11:44:08 -07:00
gio = "0.14.8"
gobject-sys = "0.14.0"
wayland-client = { version = "0.28", optional = true }
wayland-protocols = { version = "0.28", features = [ "client", "unstable_protocols" ], optional = true }
2021-11-16 09:36:54 -07:00
x11 = { version = "2", features = ["xlib"] }
2021-11-30 16:15:06 -05:00
# examples
2022-01-11 00:05:57 -05:00
gtk4 = { version ="0.3.1", features = ["v4_4"] }
glib-sys = "0.14.0"
pop-launcher-service = { git = "https://github.com/wash2/launcher.git" }
2021-12-28 11:08:02 -05:00
pop-launcher = { git = "https://github.com/wash2/launcher.git" }
serde = "1.0.130"
2021-12-06 10:56:45 -05:00
serde_json = "1.0.72"
tokio = { version = "1.15.0", features = ["sync"] }
2021-12-16 12:22:33 -05:00
futures = "0.3.17"
futures-util = "0.3.19"
2021-12-02 17:25:33 -05:00
once_cell = "1.8.0"
xdg = "2.4.0"
x11rb = "0.9.0"
2021-12-21 14:51:57 -05:00
# zbus
2022-01-06 15:54:38 -05:00
zbus = "2.0.0"
zvariant = "3.0.0"
zvariant_derive = "3.0.0"
2022-01-11 00:05:57 -05:00
libloading = "0.7.2"
gtk4-sys = "0.3.1"
2021-12-21 14:51:57 -05:00
2021-12-31 14:58:26 -05:00
[profile.release]
incremental = true
debug = 1
2021-12-21 14:51:57 -05:00
[features]
layer-shell = ["gdk4-wayland", "wayland-client", "wayland-protocols"]