Cargo Features
Fae has no features set by default.
[dependencies]
fae = { version = "0.6.0", features = ["text", "profiler", "ttf", "png", "font8x8"] }
- text = fnv
- profiler = lazy_static
- ttf = rusttype, stb_truetype
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- rusttype ttf?
-
Enables rusttype ^0.8.2
Glutin depends on andrew on linux, which depends on rusttype 0.7.9,
which depends on rusttype ^0.8, so this should match that. No dupes. - stb_truetype ttf?
-
Enables stb_truetype
And rusttype 0.8.2 depends on this version of stb_truetype, and we need to explicitly depend on it to be able to use its types.
- fnv text?
- png implicit feature
-
Enables png ^0.15.3
png:
PNG decoding and encoding library in pure Rust
- font8x8 implicit feature
-
Enables font8x8 ^0.2.5
font8x8:
8x8 monochrome bitmap font for rendering
Affects
fonts::font8x8
… - lazy_static profiler?