Cargo Features
[dependencies]
tiny-skia-path = { version = "0.11.4", default-features = false, features = ["std", "no-std-float"] }
- default = std
-
The
std
feature is set by default whenevertiny-skia-path
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables the use of the standard library. Deactivate this and activate the no-std-float feature to compile for targets that don't have std.
- no-std-float = libm
-
Affects
scalar::NoStdFloat
…
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.
- libm no-std-float?
-
Enables libm
float support on no_std