mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 20:14:21 +01:00
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; ```
19 lines
442 B
TOML
19 lines
442 B
TOML
# Copyright 2025 the Limbo authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "limbo"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Limbo Rust API"
|
|
|
|
[dependencies]
|
|
limbo_core = { workspace = true, features = ["io_uring"] }
|
|
thiserror = "2.0.9"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.20.0"
|
|
tokio = { version = "1.29.1", features = ["full"] }
|