Cargo Features

[dependencies]
chksum-cli = { version = "0.4.1", default-features = false, features = ["color", "md5", "sha1", "sha2", "sha2-224", "sha2-256", "sha2-384", "sha2-512"] }
default = color, md5, sha1, sha2

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

color default = colored

compilation

Affects chksum-cli::Command.color

md5 default

algorithms

Enables md5 of chksum

sha1 default

Enables sha1 of chksum

sha2 default = sha2-224, sha2-256, sha2-384, sha2-512

Enables sha2 of chksum

sha2-224 sha2

Enables sha2-224 of chksum

sha2-256 sha2

Enables sha2-256 of chksum

sha2-384 sha2

Enables sha2-384 of chksum

sha2-512 sha2

Enables sha2-512 of chksum

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.

colored color