Cargo Features
[dependencies]
cuteness = { version = "0.9.10", default-features = false, features = ["sass"] }
FIXME: Change this to a configuration option
- default = sass
-
The
sass
feature is set by default whenevercuteness
is added without
somewhere in the dependency tree.default-features = false - sass default
-
Features
Enables using Sass as a preprocessor. It will preprocess your
.sass
files insrc/static
before copying them to the output directory.As a side effect, it also enables the configuration option
sassbin
[^2][^2]: The option
sassbin
indicates the name of the Sass preprocessor binary. (default:sass
)Affects
cuteness::compile_styles
…