Cargo Features

[dependencies]
clearurls = { version = "0.0.4", default-features = false, features = ["std", "markdown-it", "linkify"] }
default = std

The std feature is set by default whenever clearurls is added without default-features = false somewhere in the dependency tree.

std default markdown-it?

Enables std of regex, serde, and serde_json

regex:

ECOSYSTEM FEATURES

The 'std' feature permits the regex crate to use the standard library. This is intended to support future use cases where the regex crate may be able to compile without std, and instead just rely on 'core' and 'alloc' (for example). Currently, this isn't supported, and removing the 'std' feature will prevent regex from compiling.

markdown-it = std

Enables linkify and markdown-it

linkify

Enables linkify

ClearURLs has 4 features without comments.