Cargo Features

[dependencies]
twine_sql_store = { version = "0.1.3", default-features = false, features = ["mysql", "sqlite", "postgres", "runtime-tokio", "runtime-async-std"] }
default = sqlite

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

mysql

Enables mysql of sqlx

Affects twine_sql_store::mysql

sqlite default

Enables sqlite of sqlx

Affects twine_sql_store::sqlite

postgres

Enables postgres of sqlx

runtime-tokio

Enables runtime-tokio of sqlx

runtime-async-std

Enables runtime-async-std of sqlx

sqlx:

Base runtime features without TLS