libcosmic/Cargo.toml

26 lines
983 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-06-27 16:41:27 -07:00
gtk4 = { git = "https://github.com/gtk-rs/gtk4-rs", features = ["v4_4"] }
gdk4 = { git = "https://github.com/gtk-rs/gtk4-rs" }
gdk4-wayland = { git = "https://github.com/gtk-rs/gtk4-rs", features = ["wayland_crate"], optional = true }
gdk4-x11 = { git = "https://github.com/gtk-rs/gtk4-rs", features = ["xlib"] }
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
gobject-sys = { git = "https://github.com/gtk-rs/gtk-rs-core" }
2022-01-19 10:19:56 -05:00
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"]