1[package]
2name = "sctk-adwaita"
3version = "0.10.1"
4edition = "2021"
5authors = ["Poly <marynczak.bartlomiej@gmail.com>"]
6keywords = ["sctk"]
7license = "MIT"
8repository = "https://github.com/PolyMeilex/sctk-adwaita"
9documentation = "https://docs.rs/sctk-adwaita"
10description = "Adwaita-like SCTK Frame"
11
12[dependencies]
13log = "0.4"
14memmap2 = { version = "0.9.0", optional = true }
15tiny-skia = { version = "0.11", default-features = false, features = [
16 "std",
17 "simd",
18] }
19smithay-client-toolkit = { version = "0.19.0", default_features = false }
20
21# Draw title text using crossfont `--features crossfont`
22crossfont = { version = "0.8.0", optional = true }
23# Draw title text using ab_glyph `--features ab_glyph`
24ab_glyph = { version = "0.2.17", optional = true }
25
26[features]
27default = ["ab_glyph"]
28crossfont = ["dep:crossfont"]
29ab_glyph = ["dep:ab_glyph", "memmap2"]
30