mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-11-16 15:58:17 +00:00
Boog900
44981f2b24
* add workflow * fix errors * fix workflow * install dependencies * fix more errors * Update CONTRIBUTING.md * Update CONTRIBUTING.md Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * fix hack + enable it for cuprate-database * move hack to main CI * fix docs * fix ci formatting * fix txpool tests * fix CONTRIBUTING.md formatting * service -> tower::Service * review fixes * review fixes * fix CI --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
28 lines
857 B
TOML
28 lines
857 B
TOML
[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"]
|
|
|
|
[features]
|
|
default = ["heed"]
|
|
heed = ["cuprate-database/heed"]
|
|
redb = ["cuprate-database/redb"]
|
|
redb-memorey = ["cuprate-database/redb-memory"]
|
|
|
|
[dependencies]
|
|
cuprate-database = { workspace = true }
|
|
cuprate-helper = { workspace = true, features = ["fs", "thread", "map", "asynch"] }
|
|
|
|
serde = { workspace = true, optional = true }
|
|
rayon = { workspace = true }
|
|
tower = { workspace = true }
|
|
futures = { workspace = true, features = ["std"] }
|
|
crossbeam = { workspace = true, features = ["std"] }
|
|
|
|
[lints]
|
|
workspace = true
|