Cargo Features
[dependencies]
tql = { version = "0.1.0", default-features = false, features = ["sqlite", "pg", "unstable", "chrono"] }
- default = unstable
-
The
unstable
feature is set by default whenevertql
is added without
somewhere in the dependency tree.default-features = false - sqlite = rusqlite
-
Enables rusqlite of tql_macros
- pg = postgres
-
Enables postgres of tql_macros
- unstable default
-
Enables unstable of tql_macros
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.
- chrono implicit feature
-
Enables chrono
chrono:
Date and time library for Rust
- postgres pg?
-
Enables postgres ^0.15.1
Affects
tql::SqlTable.from_row
,tql::SqlTable.from_related_row
,tql::from_related_row
… - rusqlite sqlite?
-
Enables rusqlite ^0.13.0
Affects
tql::SqlTable.from_row
,tql::SqlTable.from_related_row
,tql::from_related_row
…