mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-01-08 20:09:44 +00:00
Boog900
fdd1689665
Some checks failed
Audit / audit (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / typo (push) Has been cancelled
CI / ci (macos-latest, stable, bash) (push) Has been cancelled
CI / ci (ubuntu-latest, stable, bash) (push) Has been cancelled
CI / ci (windows-latest, stable-x86_64-pc-windows-gnu, msys2 {0}) (push) Has been cancelled
Deny / audit (push) Has been cancelled
Doc / build (push) Has been cancelled
Doc / deploy (push) Has been cancelled
* split the DB service abstraction * fix ci * misc changes * init tx-pool DBs * add some comments * move more types to `/types` * add some ops * add config & more ops functions & open function * add read & write svcs * add more docs * add write functions + docs * fix merge * fix test * fix ci * move `TxPoolWriteError` * add more docs * fix toml formatting * fix some docs * fix clippy * review fixes * update docs * fix merge * fix docs * fix tests * fix tests * add back lints * Update storage/txpool/README.md Co-authored-by: hinto-janai <hinto.janai@protonmail.com> --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
43 lines
1.8 KiB
TOML
43 lines
1.8 KiB
TOML
[package]
|
|
name = "cuprate-txpool"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
description = "Cuprate's transaction pool database"
|
|
license = "MIT"
|
|
authors = ["Boog900"]
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/storage/txpool"
|
|
keywords = ["cuprate", "txpool", "transaction", "pool", "database"]
|
|
|
|
[features]
|
|
default = ["heed", "service"]
|
|
# default = ["redb", "service"]
|
|
# default = ["redb-memory", "service"]
|
|
heed = ["cuprate-database/heed"]
|
|
redb = ["cuprate-database/redb"]
|
|
redb-memory = ["cuprate-database/redb-memory"]
|
|
service = ["dep:tower", "dep:rayon", "dep:cuprate-database-service"]
|
|
serde = ["dep:serde", "cuprate-database/serde", "cuprate-database-service/serde"]
|
|
|
|
[dependencies]
|
|
cuprate-database = { path = "../database", features = ["heed"] }
|
|
cuprate-database-service = { path = "../service", optional = true }
|
|
cuprate-types = { path = "../../types" }
|
|
cuprate-helper = { path = "../../helper", default-features = false, features = ["constants"] }
|
|
|
|
monero-serai = { workspace = true, features = ["std"] }
|
|
bytemuck = { workspace = true, features = ["must_cast", "derive", "min_const_generics", "extern_crate_alloc"] }
|
|
bitflags = { workspace = true, features = ["std", "serde", "bytemuck"] }
|
|
thiserror = { workspace = true }
|
|
hex = { workspace = true }
|
|
|
|
tower = { workspace = true, optional = true }
|
|
rayon = { workspace = true, optional = true }
|
|
|
|
serde = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
cuprate-test-utils = { path = "../../test-utils" }
|
|
|
|
tokio = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
hex-literal = { workspace = true }
|