[package]
edition = "2021"
name = "oxisqlite-core"
version = "0.3.2"
authors = ["the Limbo authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "oxisqlite-core — core engine of the Pure-Rust SQLite-compatible oxisqlite fork (C-free)"
readme = "README.md"
keywords = [
"sqlite",
"database",
"sql",
"embedded",
"btree",
]
categories = [
"database",
"embedded",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxisql"
[features]
default = [
"fs",
"uuid",
"time",
"json",
"static",
]
fs = ["limbo_ext/vfs"]
fuzz = []
index_experimental = []
io_uring = [
"native-io",
"dep:io-uring",
"rustix/io_uring",
"dep:libc",
]
json = []
load-extension = ["dep:libloading"]
native-io = [
"dep:polling",
"dep:rustix",
]
omit_autovacuum = []
serde = ["dep:serde"]
simulator = [
"fuzz",
"serde",
]
static = ["limbo_ext/static"]
time = ["limbo_time/static"]
uuid = ["limbo_uuid/static"]
[lib]
name = "limbo_core"
path = "lib.rs"
[[test]]
name = "durability"
path = "tests/durability.rs"
[[test]]
name = "correlated"
path = "tests/correlated.rs"
[[test]]
name = "conflict"
path = "tests/conflict.rs"
[[test]]
name = "limit_params"
path = "tests/limit_params.rs"
[[test]]
name = "in_null"
path = "tests/in_null.rs"
[[test]]
name = "upsert"
path = "tests/upsert.rs"
[[test]]
name = "schema_cookie"
path = "tests/schema_cookie.rs"
[[test]]
name = "analyze"
path = "tests/analyze.rs"
[[test]]
name = "without_rowid"
path = "tests/without_rowid.rs"
[[test]]
name = "group_by_having"
path = "tests/group_by_having.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[[bench]]
name = "json_benchmark"
path = "benches/json_benchmark.rs"
harness = false
[[bench]]
name = "mvcc_benchmark"
path = "benches/mvcc_benchmark.rs"
harness = false
[[bench]]
name = "tpc_h_benchmark"
path = "benches/tpc_h_benchmark.rs"
harness = false
[dependencies.bitflags]
version = "2.13.0"
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
]
default-features = false
[dependencies.crossbeam-skiplist]
version = "0.1.3"
[dependencies.fallible-iterator]
version = "0.3.0"
[dependencies.getrandom]
version = "0.4.3"
[dependencies.hex]
version = "0.4.3"
[dependencies.libc]
version = "0.2.186"
optional = true
[dependencies.libm]
version = "0.2"
[dependencies.limbo_ext]
version = "0.3"
features = ["core_only"]
package = "oxisqlite-ext"
[dependencies.limbo_macros]
version = "0.3"
package = "oxisqlite-macros"
[dependencies.limbo_sqlite3_parser]
version = "0.3"
package = "oxisqlite-sqlite3-parser"
[dependencies.limbo_time]
version = "0.3"
features = ["static"]
optional = true
package = "oxisqlite-time"
[dependencies.limbo_uuid]
version = "0.3"
features = ["static"]
optional = true
package = "oxisqlite-uuid"
[dependencies.miette]
version = "7.6.0"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.rand]
version = "0.10.1"
[dependencies.regex]
version = "1.12.4"
[dependencies.regex-syntax]
version = "0.8.11"
features = ["unicode"]
default-features = false
[dependencies.ryu]
version = "1.0.23"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.strum]
version = "0.28.0"
features = ["derive"]
[dependencies.strum_macros]
version = "0.28.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tracing]
version = "0.1.44"
[dependencies.uncased]
version = "0.9.10"
[dev-dependencies.criterion]
version = "0.8"
features = [
"html_reports",
"async",
"async_futures",
]
[dev-dependencies.env_logger]
version = "0.11.11"
[dev-dependencies.lru]
version = "0.18.0"
[dev-dependencies.quickcheck]
version = "1.1"
default-features = false
[dev-dependencies.quickcheck_macros]
version = "1.2"
default-features = false
[dev-dependencies.rand]
version = "0.10.1"
[dev-dependencies.rand_chacha]
version = "0.10.0"
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.sorted-vec]
version = "0.8.10"
[dev-dependencies.tempfile]
version = "3.27.0"
[dev-dependencies.test-log]
version = "0.2.21"
features = ["trace"]
[target.'cfg(not(target_family = "wasm"))'.dependencies.libloading]
version = "0.9.0"
optional = true
[target.'cfg(not(target_family = "windows"))'.dev-dependencies.pprof]
version = "0.15.0"
features = ["flamegraph"]
[target.'cfg(target_family = "unix")'.dependencies.polling]
version = "3.11.0"
optional = true
[target.'cfg(target_family = "unix")'.dependencies.rustix]
version = "1.1.4"
features = ["fs"]
optional = true
[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.7.13"
optional = true