mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-23 03:59:37 +00:00
Boog900
b57ee2f4cf
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
* init dandelion integration * add dandelion start function * finish incoming tx handler * Add tx blob hash table * Add missing txpool requests * handle duplicate stem txs * check txpool on incoming block * add request to remove tx in new blocks from the pool * tell the txpool about incoming blocks * fix merge * typos * remove blockchain height from txpool * add function to start the pool * add cross network address * pre-review changes * fix CI * review fixes * review fixes * abort on DB error * fix clippy
47 lines
1.9 KiB
TOML
47 lines
1.9 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 = { workspace = true, features = ["heed"] }
|
|
cuprate-database-service = { workspace = true, optional = 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 }
|
|
blake3 = { workspace = true, features = ["std"] }
|
|
|
|
tower = { workspace = true, optional = true }
|
|
rayon = { workspace = true, optional = 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
|