2023-09-03 22:50:38 +00:00
|
|
|
[package]
|
2023-12-14 15:39:16 +00:00
|
|
|
name = "cuprate-consensus"
|
2023-09-03 22:50:38 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "A crate implimenting all Moneros consensus rules."
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["Boog900"]
|
|
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/consensus"
|
|
|
|
|
|
|
|
[features]
|
2024-01-21 14:46:03 +00:00
|
|
|
default = []
|
2023-10-05 16:54:19 +00:00
|
|
|
binaries = [
|
2023-10-23 18:14:40 +00:00
|
|
|
"tokio/rt-multi-thread",
|
|
|
|
"tokio/macros",
|
2023-10-05 16:54:19 +00:00
|
|
|
"tower/retry",
|
|
|
|
"tower/balance",
|
|
|
|
"tower/buffer",
|
2023-10-23 21:24:02 +00:00
|
|
|
"tower/timeout",
|
2024-01-21 14:46:03 +00:00
|
|
|
"monero-serai/http-rpc",
|
|
|
|
"dep:tracing-subscriber",
|
2023-10-05 16:54:19 +00:00
|
|
|
"dep:serde_json",
|
|
|
|
"dep:serde",
|
2024-01-30 16:09:54 +00:00
|
|
|
"dep:epee-encoding",
|
2023-10-24 01:25:11 +00:00
|
|
|
"dep:monero-wire",
|
2023-12-18 14:36:22 +00:00
|
|
|
"dep:borsh",
|
2023-12-08 15:36:45 +00:00
|
|
|
"dep:dirs",
|
|
|
|
"dep:clap"
|
2023-10-05 16:54:19 +00:00
|
|
|
]
|
2023-09-03 22:50:38 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-01-22 01:56:34 +00:00
|
|
|
cuprate-helper = { path = "../helper", default-features = false, features = ["std", "asynch", "num"] }
|
2023-12-16 23:03:02 +00:00
|
|
|
monero-consensus = {path = "./rules", features = ["rayon"]}
|
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
thiserror = { workspace = true }
|
|
|
|
tower = { workspace = true, features = ["util"] }
|
|
|
|
tracing = { workspace = true, features = ["std", "attributes"] }
|
|
|
|
futures = { workspace = true, features = ["std"] }
|
2023-09-03 22:50:38 +00:00
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
randomx-rs = { workspace = true }
|
|
|
|
monero-serai = { workspace = true, features = ["std"] }
|
2023-12-17 14:32:03 +00:00
|
|
|
multiexp = { workspace = true }
|
|
|
|
dalek-ff-group = { workspace = true }
|
2024-02-13 00:51:11 +00:00
|
|
|
curve25519-dalek = { workspace = true }
|
2023-09-03 22:50:38 +00:00
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
rayon = { workspace = true }
|
|
|
|
thread_local = { workspace = true }
|
2024-01-22 18:17:34 +00:00
|
|
|
tokio = { workspace = true, features = ["rt"] }
|
2024-01-21 14:46:03 +00:00
|
|
|
tokio-util = { workspace = true }
|
2023-10-23 18:14:40 +00:00
|
|
|
|
2023-12-16 23:03:02 +00:00
|
|
|
hex = "0.4"
|
|
|
|
|
2023-10-03 21:10:31 +00:00
|
|
|
# used in binaries
|
2023-10-05 16:54:19 +00:00
|
|
|
monero-wire = {path="../net/monero-wire", optional = true}
|
2024-01-30 16:09:54 +00:00
|
|
|
epee-encoding = { path="../net/epee-encoding" , optional = true}
|
2023-09-06 14:54:49 +00:00
|
|
|
serde_json = {version = "1", optional = true}
|
|
|
|
serde = {version = "1", optional = true, features = ["derive"]}
|
2023-09-03 22:50:38 +00:00
|
|
|
tracing-subscriber = {version = "0.3", optional = true}
|
2023-12-18 14:36:22 +00:00
|
|
|
borsh = { workspace = true, optional = true}
|
2023-10-24 01:25:11 +00:00
|
|
|
dirs = {version="5.0", optional = true}
|
2023-12-08 15:36:45 +00:00
|
|
|
clap = { version = "4.4.8", optional = true, features = ["derive"] }
|
2023-09-03 22:50:38 +00:00
|
|
|
# here to help cargo to pick a version - remove me
|
2023-10-04 13:50:13 +00:00
|
|
|
syn = "2.0.37"
|
2023-10-23 18:14:40 +00:00
|
|
|
|
2023-10-28 23:39:22 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-12-17 03:13:30 +00:00
|
|
|
monero-consensus = {path = "./rules", features = ["proptest"]}
|
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"]}
|
|
|
|
proptest = { workspace = true }
|
|
|
|
proptest-derive = { workspace = true }
|