2024-08-05 20:47:30 +00:00
|
|
|
[package]
|
|
|
|
name = "cuprate-database-service"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "Cuprate's database service abstraction"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["Boog900"]
|
|
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/storage/service"
|
|
|
|
keywords = ["cuprate", "service", "database"]
|
|
|
|
|
2024-11-01 20:22:14 +00:00
|
|
|
[features]
|
|
|
|
default = ["heed"]
|
|
|
|
heed = ["cuprate-database/heed"]
|
|
|
|
redb = ["cuprate-database/redb"]
|
|
|
|
redb-memorey = ["cuprate-database/redb-memory"]
|
|
|
|
|
2024-08-05 20:47:30 +00:00
|
|
|
[dependencies]
|
2024-10-24 22:12:30 +00:00
|
|
|
cuprate-database = { workspace = true }
|
2024-11-01 20:22:14 +00:00
|
|
|
cuprate-helper = { workspace = true, features = ["fs", "thread", "map", "asynch"] }
|
2024-08-05 20:47:30 +00:00
|
|
|
|
|
|
|
serde = { workspace = true, optional = true }
|
|
|
|
rayon = { workspace = true }
|
|
|
|
tower = { workspace = true }
|
2024-11-01 20:22:14 +00:00
|
|
|
futures = { workspace = true, features = ["std"] }
|
2024-08-05 20:47:30 +00:00
|
|
|
crossbeam = { workspace = true, features = ["std"] }
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|