Cargo Features

[dependencies]
mls-rs-ffi = { version = "0.6.0", default-features = false, features = ["std", "openssl", "sqlcipher", "sqlcipher-bundled", "sqlite", "sqlite-bundled", "x509"] }
default = openssl, sqlcipher-bundled, x509

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

std openssl sqlite?

Enables std of mls-rs and safer-ffi-gen

openssl default = mls-rs-crypto-openssl, std
sqlcipher = sqlite

Enables sqlcipher of mls-rs-provider-sqlite

sqlcipher-bundled default = sqlite

Enables sqlcipher-bundled of mls-rs-provider-sqlite

sqlite sqlcipher? sqlcipher-bundled sqlite-bundled? = std

Enables sqlite of mls-rs-provider-sqlite

sqlite-bundled = sqlite

Enables sqlite-bundled of mls-rs-provider-sqlite

x509 default = mls-rs-identity-x509

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.

mls-rs-crypto-openssl openssl
mls-rs-identity-x509 x509
mls-rs-provider-sqlite sqlcipher? sqlcipher-bundled sqlite? sqlite-bundled?