[package]
edition = "2021"
rust-version = "1.89"
name = "oxisql-sqlite-compat"
version = "0.3.1"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust SQLite-compatible backend for OxiSQL via the oxisqlite Pure-Rust engine (C-free fork of limbo)"
readme = "README.md"
keywords = [
"sqlite",
"sql",
"database",
"oxisqlite",
"pure-rust",
]
categories = ["database"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxisql"
[features]
blocking = []
[lib]
name = "oxisql_sqlite_compat"
path = "src/lib.rs"
[[test]]
name = "blocking"
path = "tests/blocking.rs"
[[test]]
name = "change_counts"
path = "tests/change_counts.rs"
[[test]]
name = "connect"
path = "tests/connect.rs"
[[test]]
name = "rollback"
path = "tests/rollback.rs"
[[test]]
name = "rollback_error"
path = "tests/rollback_error.rs"
[[test]]
name = "savepoint"
path = "tests/savepoint.rs"
[[test]]
name = "schema_reprepare"
path = "tests/schema_reprepare.rs"
[[test]]
name = "stmt_cache"
path = "tests/stmt_cache.rs"
[[test]]
name = "type_mapping"
path = "tests/type_mapping.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4"
features = ["std"]
default-features = false
[dependencies.limbo]
version = "0.3"
features = ["index_experimental"]
package = "oxisqlite"
[dependencies.log]
version = "0.4"
[dependencies.lru]
version = "0.18.0"
[dependencies.oxisql-core]
version = "0.3"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]