2023-03-07 22:37:55 +00:00
|
|
|
[package]
|
2024-06-24 01:30:47 +00:00
|
|
|
name = "cuprate-wire"
|
2023-03-07 22:37:55 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["Boog900"]
|
|
|
|
repository = "https://github.com/SyntheticBird45/cuprate/tree/main/net/monero-wire"
|
|
|
|
|
2024-03-05 01:29:57 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
2024-06-24 01:30:47 +00:00
|
|
|
tracing = ["cuprate-levin/tracing"]
|
2023-03-07 22:37:55 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-06-24 01:30:47 +00:00
|
|
|
cuprate-levin = { path = "../levin" }
|
|
|
|
cuprate-epee-encoding = { path = "../epee-encoding" }
|
|
|
|
cuprate-fixed-bytes = { path = "../fixed-bytes" }
|
2024-07-16 21:47:50 +00:00
|
|
|
cuprate-types = { path = "../../types", default-features = false, features = ["epee"] }
|
2024-01-30 16:09:54 +00:00
|
|
|
|
2024-05-02 22:58:22 +00:00
|
|
|
bitflags = { workspace = true, features = ["std"] }
|
|
|
|
bytes = { workspace = true, features = ["std"] }
|
2024-01-22 01:56:34 +00:00
|
|
|
thiserror = { workspace = true }
|
2023-07-17 17:43:34 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-22 01:56:34 +00:00
|
|
|
hex = { workspace = true, features = ["std"]}
|
2023-03-07 22:37:55 +00:00
|
|
|
|