2021-11-16 09:36:54 -07:00
|
|
|
[package]
|
|
|
|
|
name = "libcosmic"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-19 10:19:56 -05:00
|
|
|
cascade = "1.0.0"
|
2022-01-24 12:03:22 -05:00
|
|
|
gtk4 = { version = "0.4.4", features = ["v4_4"] }
|
2022-01-19 13:56:20 -05:00
|
|
|
gdk4 = "0.4.4"
|
2022-01-19 16:00:02 -05:00
|
|
|
gdk4-wayland = { version = "0.4.2", features = [ "wayland_crate" ], optional = true }
|
2022-01-19 10:19:56 -05:00
|
|
|
gdk4-x11 = { version = "0.4.2", features = [ "xlib" ] }
|
|
|
|
|
gio = "0.15.2"
|
|
|
|
|
gobject-sys = "0.15.1"
|
|
|
|
|
wayland-client = { version = "0.29.4", optional = true }
|
|
|
|
|
wayland-protocols = { version = "0.29.4", features = [ "client", "unstable_protocols" ], optional = true }
|
|
|
|
|
x11 = { version = "2.19.1", features = ["xlib"] }
|
|
|
|
|
once_cell = "1.9.0"
|
2021-12-21 14:51:57 -05:00
|
|
|
|
2022-01-05 13:28:49 -08:00
|
|
|
[features]
|
|
|
|
|
layer-shell = ["gdk4-wayland", "wayland-client", "wayland-protocols"]
|