Cargo Features

[dependencies]
assembly-data = { version = "0.3.0", default-features = false, features = ["sqlite", "serde-derives"] }
default = serde-derives, sqlite

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

sqlite default = rusqlite

Affects fdb::sqlite

serde-derives default = serde

Enables serialize of quick-xml ^0.20

quick-xml:

Enables support for serde serialization and deserialization. When this feature is enabled, quick-xml provides serializer and deserializer for XML.

This feature does NOT enables serializaton of the types inside quick-xml. If you need that, use the serde-types feature. "dep:" prefix only avalible from Rust 1.60

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.

rusqlite sqlite

Enables rusqlite ^0.21.0

serde serde-derives