-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
28 lines (26 loc) · 941 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "i3bar-river"
description = "A port of i3bar for wlroots-based compositors "
repository = "https://github.com/MaxVerevkin/i3bar-river"
readme = "README.md"
version = "1.1.0"
edition = "2021"
license = "GPL-3.0-only"
authors = ["MaxVerevkin <[email protected]>"]
[dependencies]
anyhow = "1"
memchr = "2"
pangocairo = "0.20"
serde_json = "1"
serde = { version = "1", features = ["derive"] }
signal-hook = { version = "0.3", default-features = false }
toml = { version = "0.8", default-features = false, features = ["parse"] }
wayrs-client = "1.0"
wayrs-protocols = { version = "0.14", features = ["wlr-layer-shell-unstable-v1", "viewporter", "fractional-scale-v1"] }
wayrs-utils = { version = "0.17", features = ["cursor", "shm_alloc", "seats"] }
clap = { version = "4.3", default-features = false, features = ["derive", "std", "help", "usage"] }
libc = "0.2"
[profile.release]
lto = "fat"
strip = true
codegen-units = 1