cuprate-hinto-janai/net/monero-wire/Cargo.toml
Boog900 a187d9a357
initial p2p code (#8)
* 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
2023-04-24 22:37:40 +01:00

21 lines
541 B
TOML

[package]
name = "monero-wire"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["Boog900"]
repository = "https://github.com/SyntheticBird45/cuprate/tree/main/net/monero-wire"
[dependencies]
levin = {path="../levin"}
serde = {version = "1.0", features =["derive"]}
serde_with = "2.2.0"
sealed = "0.4"
epee-serde = {git="https://github.com/Cuprate/epee_serde.git"}
#monero = {git="https://github.com/Boog900/monero-rs.git", branch="db", features=["database"]}
byteorder = "1.4.3"
bytes = "1"
thiserror = "1.0.24"
hex = "0.4.3"