mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-16 15:58:14 +00:00
Boog900
1a178381dd
* split the DB service abstraction * fix ci * misc changes * Apply suggestions from code review Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * review fixes * Update storage/service/Cargo.toml Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * Update storage/service/Cargo.toml Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * fix clippy * fix doc * `bc` -> `blockchain` * doc fixes * Update storage/service/README.md Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * cargo fmt --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
22 lines
691 B
TOML
22 lines
691 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"]
|
|
|
|
[dependencies]
|
|
cuprate-database = { path = "../database" }
|
|
cuprate-helper = { path = "../../helper", features = ["fs", "thread", "map"] }
|
|
|
|
serde = { workspace = true, optional = true }
|
|
rayon = { workspace = true }
|
|
tower = { workspace = true }
|
|
futures = { workspace = true }
|
|
crossbeam = { workspace = true, features = ["std"] }
|
|
|
|
[lints]
|
|
workspace = true
|