mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-04 16:49:59 -06:00
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "trailbase-sqlite"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
license = "OSL-3.0"
|
|
description = "Async SQLite connection for TrailBase"
|
|
homepage = "https://trailbase.io"
|
|
repository = "https://github.com/trailbaseio/trailbase"
|
|
readme = "../README.md"
|
|
autobenches = false
|
|
|
|
[[bench]]
|
|
name = "benchmark"
|
|
path = "benches/benchmark.rs"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
base64 = { version = "0.22.1", default-features = false, features = ["alloc"] }
|
|
crossbeam-channel = "0.5.13"
|
|
kanal = "0.1.1"
|
|
log = { version = "^0.4.21", default-features = false }
|
|
parking_lot = { version = "0.12.3", default-features = false }
|
|
rusqlite = { workspace = true }
|
|
serde = { version = "^1.0.203", features = ["derive"] }
|
|
serde_json = "1.0.122"
|
|
serde_rusqlite = "0.39"
|
|
thiserror = "2.0.12"
|
|
tokio = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.6", features = ["html_reports", "async_tokio"] }
|
|
env_logger = { workspace = true }
|
|
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
|
log = "0.4.27"
|
|
rand = "0.9.0"
|
|
tempfile = "3.19.1"
|
|
trailbase-extension = { workspace = true }
|
|
uuid = { workspace = true }
|