1[package]
2name = "sctk-adwaita"
3version = "0.8.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.18.0", default_features = false }
20
21# Draw title text using crossfont `--features crossfont`
22crossfont = { version = "0.7.0", features = [
23 "force_system_fontconfig",
24], optional = true }
25# Draw title text using ab_glyph `--features ab_glyph`
26ab_glyph = { version = "0.2.17", optional = true }
27
28[features]
29default = ["ab_glyph"]
30crossfont = ["dep:crossfont"]
31ab_glyph = ["dep:ab_glyph", "memmap2"]
32