mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-26 04:24:21 +01:00
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.
16 lines
375 B
TOML
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"] } |