limbo/core/ext
Pekka Enberg 2fc5c0ce5c Switch to runtime flag for enabling indexes
Makes it easier to test the feature:

```
$ cargo run --  --experimental-indexes
Limbo v0.0.22
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database
limbo> CREATE TABLE t(x);
limbo> CREATE INDEX t_idx ON t(x);
limbo> DROP INDEX t_idx;
```
2025-06-26 10:07:28 +03:00
..
dynamic.rs Switch Connection to use Arc instead of Rc 2025-06-16 10:43:19 +03:00
mod.rs Switch to runtime flag for enabling indexes 2025-06-26 10:07:28 +03:00
vtab_xconnect.rs chore: fix clippy warnings 2025-06-23 19:52:13 +01:00