mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-12-23 12:09:52 +00:00
83b59c557c
This gives us more control than what serde provides. This PR also moves to use `Bytes` where possible to allow zero-copy parsing of network messages.
20 lines
457 B
TOML
20 lines
457 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-cuprate = {path="../levin"}
|
|
epee-encoding = { path = "../epee-encoding" }
|
|
fixed-bytes = { path = "../fixed-bytes" }
|
|
|
|
bytes = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
hex = { workspace = true, features = ["std"]}
|
|
|