Cargo Features

[dependencies]
indexed_db_futures = { version = "0.4.1", default-features = false, features = ["cursors", "indices", "nightly"] }
default = cursors, indices

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

cursors default

Enables IdbCursor, IdbCursorDirection and IdbCursorWithValue of web-sys

Affects idb_query_source::IdbQuerySource.open_cursor, idb_query_source::IdbQuerySource.open_cursor_with_range, idb_query_source::IdbQuerySource.open_cursor_with_range_owned, idb_query_source::IdbQuerySource.open_cursor_with_range_and_direction, idb_query_source::IdbQuerySource.open_cursor_with_range_and_direction_owned, idb_query_source::IdbQuerySource.open_cursor_with_direction, idb_query_source::IdbQuerySource.open_key_cursor, idb_query_source::IdbQuerySource.open_key_cursor_with_range, idb_query_source::IdbQuerySource.open_key_cursor_with_range_owned, idb_query_source::IdbQuerySource.open_key_cursor_with_range_and_direction, idb_query_source::IdbQuerySource.open_key_cursor_with_range_and_direction_owned, idb_query_source::IdbQuerySource.open_key_cursor_with_direction, indexed_db_futures::idb_cursor

indices default

Enables IdbIndex and IdbIndexParameters of web-sys

Affects idb_object_store::test.indices

nightly