mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-12-22 19:49:28 +00:00
Boog900
8be369846e
Some checks failed
CI / fmt (push) Waiting to run
CI / typo (push) Waiting to run
CI / ci (macos-latest, stable, bash) (push) Waiting to run
CI / ci (ubuntu-latest, stable, bash) (push) Waiting to run
CI / ci (windows-latest, stable-x86_64-pc-windows-gnu, msys2 {0}) (push) Waiting to run
Doc / build (push) Waiting to run
Doc / deploy (push) Blocked by required conditions
Audit / audit (push) Has been cancelled
Deny / audit (push) Has been cancelled
* add cuprated skeleton * fmt and add deny exception * add main chain batch handler * add blockchain init * very rough block manager * misc changes * move more config values * add new tables & types * add function to fully add an alt block * resolve current todo!s * add new requests * WIP: starting re-orgs * add last service request * commit Cargo.lock * add test * more docs + cleanup + alt blocks request * clippy + fmt * document types * move tx_fee to helper * more doc updates * fmt * fix imports * remove config files * fix merge errors * fix generated coins * handle more p2p requests + alt blocks * clean up handler code * add function for incoming blocks * add docs to handler functions * broadcast new blocks + add commands * add fluffy block handler * fix new block handling * small cleanup * increase outbound peer count * fix merge * clean up the blockchain manger * add more docs + cleanup imports * fix typo * fix doc * remove unrelated changes * improve interface globals * manger -> manager * enums instead of bools * move chain service to separate file * more review fixes * add link to issue * fix syncer + update comment * fmt
83 lines
3.6 KiB
TOML
83 lines
3.6 KiB
TOML
[package]
|
|
name = "cuprated"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
description = "The Cuprate Monero Rust node."
|
|
license = "AGPL-3.0-only"
|
|
authors = ["Boog900", "hinto-janai", "SyntheticBird45"]
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/binaries/cuprated"
|
|
|
|
[dependencies]
|
|
# TODO: after v1.0.0, remove unneeded dependencies.
|
|
cuprate-consensus = { path = "../../consensus" }
|
|
cuprate-fast-sync = { path = "../../consensus/fast-sync" }
|
|
cuprate-consensus-rules = { path = "../../consensus/rules" }
|
|
cuprate-cryptonight = { path = "../../cryptonight" }
|
|
cuprate-helper = { path = "../../helper" }
|
|
cuprate-epee-encoding = { path = "../../net/epee-encoding" }
|
|
cuprate-fixed-bytes = { path = "../../net/fixed-bytes" }
|
|
cuprate-levin = { path = "../../net/levin" }
|
|
cuprate-wire = { path = "../../net/wire" }
|
|
cuprate-p2p = { path = "../../p2p/p2p" }
|
|
cuprate-p2p-core = { path = "../../p2p/p2p-core" }
|
|
cuprate-dandelion-tower = { path = "../../p2p/dandelion-tower" }
|
|
cuprate-async-buffer = { path = "../../p2p/async-buffer" }
|
|
cuprate-address-book = { path = "../../p2p/address-book" }
|
|
cuprate-blockchain = { path = "../../storage/blockchain", features = ["service"] }
|
|
cuprate-database-service = { path = "../../storage/service" }
|
|
cuprate-txpool = { path = "../../storage/txpool" }
|
|
cuprate-database = { path = "../../storage/database" }
|
|
cuprate-pruning = { path = "../../pruning" }
|
|
cuprate-test-utils = { path = "../../test-utils" }
|
|
cuprate-types = { path = "../../types" }
|
|
cuprate-json-rpc = { path = "../../rpc/json-rpc" }
|
|
cuprate-rpc-interface = { path = "../../rpc/interface" }
|
|
cuprate-rpc-types = { path = "../../rpc/types" }
|
|
|
|
# TODO: after v1.0.0, remove unneeded dependencies.
|
|
anyhow = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
borsh = { workspace = true }
|
|
bytemuck = { workspace = true }
|
|
bytes = { workspace = true }
|
|
cfg-if = { workspace = true }
|
|
clap = { workspace = true, features = ["cargo"] }
|
|
chrono = { workspace = true }
|
|
crypto-bigint = { workspace = true }
|
|
crossbeam = { workspace = true }
|
|
curve25519-dalek = { workspace = true }
|
|
const_format = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
dirs = { workspace = true }
|
|
futures = { workspace = true }
|
|
hex = { workspace = true }
|
|
hex-literal = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
monero-serai = { workspace = true }
|
|
paste = { workspace = true }
|
|
pin-project = { workspace = true }
|
|
randomx-rs = { workspace = true }
|
|
rand = { workspace = true }
|
|
rand_distr = { workspace = true }
|
|
rayon = { workspace = true }
|
|
serde_bytes = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
thread_local = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tower = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["std", "fmt", "default"] }
|
|
tracing = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|