mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-11-16 15:58:17 +00:00
e3a918bca5
Some checks are pending
Audit / audit (push) Waiting to run
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
Deny / audit (push) Waiting to run
Doc / build (push) Waiting to run
Doc / deploy (push) Blocked by required conditions
* wire: enable workspace lints * revert match arm formatting
28 lines
812 B
TOML
28 lines
812 B
TOML
[package]
|
|
name = "cuprate-wire"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Boog900"]
|
|
repository = "https://github.com/SyntheticBird45/cuprate/tree/main/net/monero-wire"
|
|
|
|
[features]
|
|
default = []
|
|
tracing = ["cuprate-levin/tracing"]
|
|
|
|
[dependencies]
|
|
cuprate-levin = { path = "../levin" }
|
|
cuprate-epee-encoding = { path = "../epee-encoding" }
|
|
cuprate-fixed-bytes = { path = "../fixed-bytes" }
|
|
cuprate-types = { path = "../../types", default-features = false, features = ["epee"] }
|
|
cuprate-helper = { path = "../../helper", default-features = false, features = ["map"] }
|
|
|
|
bitflags = { workspace = true, features = ["std"] }
|
|
bytes = { workspace = true, features = ["std"] }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
hex = { workspace = true, features = ["std"]}
|
|
|
|
[lints]
|
|
workspace = true
|