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 = "2.2.0"
|
|
|
|
|
gdk4 = "0.4.3"
|
|
|
|
|
gdk4-wayland = { version = "0.4.2", optional = true }
|
|
|
|
|
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"] }
|
2021-11-30 16:15:06 -05:00
|
|
|
|
2022-01-02 01:46:44 -05:00
|
|
|
# examples
|
2022-01-19 10:19:56 -05:00
|
|
|
gtk4 = { version = "0.4.3", features = ["v4_4"] }
|
|
|
|
|
gtk4-sys = "0.4.2"
|
|
|
|
|
glib-sys = "0.15.1"
|
2022-01-14 18:27:36 -05:00
|
|
|
relm4-macros = { git = "https://github.com/AaronErhardt/Relm4" }
|
2022-01-02 01:46:44 -05:00
|
|
|
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" }
|
2022-01-19 10:19:56 -05:00
|
|
|
serde = "1.0.133"
|
|
|
|
|
serde_json = "1.0.75"
|
2022-01-02 01:46:44 -05:00
|
|
|
tokio = { version = "1.15.0", features = ["sync"] }
|
2022-01-19 10:19:56 -05:00
|
|
|
futures = "0.3.19"
|
2022-01-02 01:46:44 -05:00
|
|
|
futures-util = "0.3.19"
|
2022-01-19 10:19:56 -05:00
|
|
|
once_cell = "1.9.0"
|
2021-12-02 17:25:33 -05:00
|
|
|
xdg = "2.4.0"
|
2021-12-14 11:53:18 -05:00
|
|
|
x11rb = "0.9.0"
|
2021-12-21 14:51:57 -05:00
|
|
|
# zbus
|
2022-01-19 10:19:56 -05:00
|
|
|
zbus = "2.0.1"
|
|
|
|
|
zvariant = "3.1.0"
|
|
|
|
|
zvariant_derive = "3.1.0"
|
|
|
|
|
libloading = "0.7.3"
|
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
|
|
|
|
2022-01-05 13:28:49 -08:00
|
|
|
[features]
|
|
|
|
|
layer-shell = ["gdk4-wayland", "wayland-client", "wayland-protocols"]
|