mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-07-07 13:11:03 +02:00
Merge pull request #497 from JakeStanger/feat/cairo
feat: new cairo module
This commit is contained in:
commit
e6f7108862
17 changed files with 622 additions and 24 deletions
|
@ -11,6 +11,7 @@ keywords = ["gtk", "bar", "wayland", "wlroots", "gtk-layer-shell"]
|
|||
[features]
|
||||
default = [
|
||||
"cli",
|
||||
"cairo",
|
||||
"clipboard",
|
||||
"clock",
|
||||
"config+all",
|
||||
|
@ -45,6 +46,8 @@ http = ["dep:reqwest"]
|
|||
"config+corn" = ["universal-config/corn"]
|
||||
"config+ron" = ["universal-config/ron"]
|
||||
|
||||
cairo = ["lua-src", "mlua", "cairo-rs"]
|
||||
|
||||
clipboard = ["nix"]
|
||||
|
||||
clock = ["chrono"]
|
||||
|
@ -116,6 +119,11 @@ serde_json = { version = "1.0.114", optional = true }
|
|||
# http
|
||||
reqwest = { version = "0.12.3", default_features = false, features = ["default-tls", "http2"], optional = true }
|
||||
|
||||
# cairo
|
||||
lua-src = { version = "546.0.2", optional = true }
|
||||
mlua = { version = "0.9.6", optional = true, features = ["luajit"] }
|
||||
cairo-rs = { version = "0.18.5", optional = true, features = ["png"] }
|
||||
|
||||
# clipboard
|
||||
nix = { version = "0.27.1", optional = true, features = ["event"] }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue