mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-11-17 00:07:55 +00:00
a187d9a357
* init * save * use macro to create the levin body enum * add protocol docs and cargo fmt * add response validation * add client functionality to connection + fmt * Add new cuprate-common crate this crate will hold stuff needed across cuprate crates + init handshaker * add stagenet & testnet hardforks + tests + cargo fmt * split peer and protocol into separate crates + add sync state watcher * finish initial sync states and add some tests * save * add initial address book * cargo fmt * save * add pruning module to cuprate-common * more address book updates - added an address book client - add some more address book requests - add "NetZone" * lots of changes * cargo fmt * combine p2p into one crate they were all linked anyway * cargo fmt * turn the handshaker into a statemachine * cargo fmt * reduce the amt of copies when decoding + remove reliance on monero-rs * update time_from_timestamp func * cargo fmt + change qr code link + remove clippy.toml
21 lines
632 B
TOML
21 lines
632 B
TOML
[package]
|
|
name = "cuprate-sync-states"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cuprate-common = {path = "../../common"}
|
|
cuprate-peer = {path = "../peer"}
|
|
cuprate-protocol = {path = "../protocol"}
|
|
monero = {git="https://github.com/Boog900/monero-rs.git", branch="db", features=["database"]}
|
|
monero-wire = {path= "../../net/monero-wire"}
|
|
futures = "0.3.26"
|
|
tower = {version = "0.4.13", features = ["util"]}
|
|
thiserror = "1.0.39"
|
|
|
|
|
|
tokio = {version="1.1", features=["full"]}
|
|
tokio-util = {version ="0.7", features=["compat"]}
|
|
|