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