mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-16 15:58:14 +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>
46 lines
1.7 KiB
TOML
46 lines
1.7 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"]
|
|
# default = ["redb", "service"]
|
|
# default = ["redb-memory", "service"]
|
|
heed = ["cuprate-database/heed"]
|
|
redb = ["cuprate-database/redb"]
|
|
redb-memory = ["cuprate-database/redb-memory"]
|
|
serde = ["dep:serde", "cuprate-database/serde", "cuprate-database-service/serde"]
|
|
|
|
[dependencies]
|
|
cuprate-database = { workspace = true, features = ["heed"] }
|
|
cuprate-database-service = { workspace = true }
|
|
cuprate-types = { workspace = true }
|
|
cuprate-helper = { workspace = true, 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, features = ["std"] }
|
|
blake3 = { workspace = true, features = ["std"] }
|
|
|
|
tower = { workspace = true }
|
|
rayon = { workspace = true }
|
|
|
|
serde = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
cuprate-test-utils = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
hex-literal = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|