Cargo Features
[dependencies]
cdbc-sqlite = { version = "0.1.23", default-features = false, features = ["offline", "json", "sqlite", "all-types"] }
- default = offline, sqlite
-
These default features are set whenever
cdbc-sqlite
is added without
somewhere in the dependency tree.default-features = false - offline default
- json all-types? sqlite = serde, serde_json
- sqlite default = json, libsqlite3-sys
- all-types = chrono, json, uuid
-
types
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.
- serde json?
- serde_json json?
- chrono all-types?
- uuid all-types?
-
Enables uuid ^0.8.1
- libsqlite3-sys sqlite
-
Enables libsqlite3-sys ^0.23.1