Files
turso/bindings/rust/Cargo.toml
Pekka Enberg af020c27d6 Initial take on Rust bindings
This implements libSQL compatible Rust API on top of Limbo's core. The
purpose of this is to allow libraries and apps that build on libSQL to
use Limbo.
2025-01-14 09:16:46 +02:00

16 lines
375 B
TOML

# Copyright 2025 the Limbo authors. All rights reserved. MIT license.
[package]
name = "limbo_libsql"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
limbo_core = { path = "../../core" }
thiserror = "2.0.9"
[dev-dependencies]
tokio = { version = "1.29.1", features = ["full"] }