Cargo Features

[dependencies]
monolith = { version = "2.10.1", default-features = false, features = ["cli", "gui", "vendored-openssl"] }
default = cli, vendored-openssl

These default features are set whenever monolith is added without default-features = false somewhere in the dependency tree.

cli default = clap, tempfile

Build a CLI tool that includes main() function

Required by the binary

gui = druid, tempfile

Build a GUI executable that includes main() function

Required by the monolith-gui binary

vendored-openssl default

Compile and statically link a copy of OpenSSL

Enables vendored of openssl

Used for static linking of the OpenSSL library

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.

clap cli

Enables clap

Used for processing CLI arguments

druid gui?

Enables druid

Used for GUI

tempfile cli gui?

Enables tempfile

Used for on-disk caching of remote assets