Cargo Features

[dependencies]
diesel_cli = { version = "2.2.0", default-features = false, features = ["postgres", "sqlite", "mysql", "sqlite-bundled", "postgres-bundled", "mysql-bundled", "uses_information_schema"] }
default = mysql, postgres, sqlite

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

postgres default postgres-bundled? = uses_information_schema

Enables postgres of diesel

sqlite default sqlite-bundled?

Enables sqlite of diesel

mysql default mysql-bundled? = uses_information_schema

Enables mysql of diesel

sqlite-bundled = sqlite

Enables bundled of libsqlite3-sys

postgres-bundled = postgres

Enables openssl-sys, bundled of pq-sys

mysql-bundled = mysql

Enables bundled of mysqlclient-sys

uses_information_schema mysql postgres

diesel_cli has 8 features without comments.