2024-10-30 22:38:29 +00:00
|
|
|
[package]
|
|
|
|
|
name = "trailbase-sqlite"
|
2025-03-09 11:08:46 +00:00
|
|
|
version = "0.2.0"
|
2024-10-30 22:38:29 +00:00
|
|
|
edition = "2021"
|
2024-11-02 11:10:01 +00:00
|
|
|
license = "OSL-3.0"
|
2025-04-08 10:25:10 +00:00
|
|
|
description = "Async SQLite connection for TrailBase"
|
2024-12-30 10:52:02 +00:00
|
|
|
homepage = "https://trailbase.io"
|
|
|
|
|
repository = "https://github.com/trailbaseio/trailbase"
|
|
|
|
|
readme = "../README.md"
|
2025-04-12 11:09:22 +00:00
|
|
|
autobenches = false
|
2024-10-30 22:38:29 +00:00
|
|
|
|
2025-04-11 19:57:51 +00:00
|
|
|
[[bench]]
|
|
|
|
|
name = "benchmark"
|
2025-04-12 11:09:22 +00:00
|
|
|
path = "benches/benchmark.rs"
|
2025-04-11 19:57:51 +00:00
|
|
|
harness = false
|
|
|
|
|
|
2024-10-30 22:38:29 +00:00
|
|
|
[dependencies]
|
2024-12-04 15:57:15 +00:00
|
|
|
crossbeam-channel = "0.5.13"
|
2025-04-08 14:56:19 +00:00
|
|
|
log = { version = "^0.4.21", default-features = false }
|
2025-04-04 11:23:26 +00:00
|
|
|
parking_lot = { version = "0.12.3", default-features = false }
|
2024-11-29 12:35:55 +00:00
|
|
|
rusqlite = { workspace = true }
|
2024-10-30 22:38:29 +00:00
|
|
|
serde = { version = "^1.0.203", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.122"
|
2025-03-10 13:10:18 +00:00
|
|
|
serde_rusqlite = "0.38.0"
|
2024-11-08 20:46:30 +00:00
|
|
|
thiserror = "2.0.1"
|
2025-04-14 07:25:44 +00:00
|
|
|
tokio = { workspace = true }
|
2025-04-08 10:25:10 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-04-11 19:57:51 +00:00
|
|
|
criterion = { version = "0.5", features = ["html_reports", "async_tokio"] }
|
2025-04-14 07:25:44 +00:00
|
|
|
env_logger = { workspace = true }
|
2025-04-12 13:23:17 +00:00
|
|
|
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
2025-04-11 19:57:51 +00:00
|
|
|
log = "0.4.27"
|
2025-04-13 09:09:48 +00:00
|
|
|
rand = "0.9.0"
|
2025-04-11 19:57:51 +00:00
|
|
|
tempfile = "3.19.1"
|
2024-12-30 10:52:02 +00:00
|
|
|
trailbase-extension = { workspace = true }
|
2025-02-26 23:27:37 +00:00
|
|
|
uuid = { workspace = true }
|