libcosmic/Cargo.toml

26 lines
791 B
TOML
Raw Normal View History

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"
derivative = { version = "2", optional = true }
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-02-24 14:03:01 -05:00
gdk4-wayland = { version = "0.4.2", features = ["wayland_crate"], optional = true }
gdk4-x11 = { version = "0.4.2", features = ["xlib"] }
2022-01-19 10:19:56 -05:00
gio = "0.15.2"
gobject-sys = "0.15.1"
wayland-client = { version = "0.29.4", optional = true }
2022-02-24 14:03:01 -05:00
wayland-protocols = { version = "0.29.4", features = ["client", "unstable_protocols"], optional = true }
2022-01-19 10:19:56 -05:00
x11 = { version = "2.19.1", features = ["xlib"] }
once_cell = "1.9.0"
2022-02-24 14:03:01 -05:00
libcosmic-widgets = { path = "widgets" }
2021-12-21 14:51:57 -05:00
[features]
layer-shell = ["derivative", "gdk4-wayland", "wayland-client", "wayland-protocols"]
2022-02-24 14:03:01 -05:00
[workspace]
members = ["widgets"]