Cargo Features

[dependencies]
zino-connector = { version = "0.1.1", default-features = false, features = ["all-connectors", "connector-arrow", "connector-http", "connector-mysql", "connector-postgres", "connector-sqlite"] }
default = connector-http

The connector-http feature is set by default whenever zino-connector is added without default-features = false somewhere in the dependency tree.

all-connectors = connector-arrow, connector-http, connector-mysql, connector-postgres, connector-sqlite
connector-arrow all-connectors?

Enables datafusion ^42.2.0, http-client of zino-core

connector-http default all-connectors?

Enables http, percent-encoding, reqwest, serde_json, serde_qs, and url, http-client of zino-core

connector-mysql all-connectors? = sqlx

Enables futures, mysql of sqlx

connector-postgres all-connectors? = sqlx

Enables futures, postgres of sqlx

connector-sqlite all-connectors? = sqlx

Enables futures, sqlite of sqlx

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.

sqlx connector-mysql? connector-postgres? connector-sqlite?