mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-12-23 03:59:31 +00:00
63216aecae
Some checks failed
Doc / build (push) Has been cancelled
CI / ci (macos-latest, stable, bash) (push) Has been cancelled
CI / ci (ubuntu-latest, stable, bash) (push) Has been cancelled
CI / ci (windows-latest, stable-x86_64-pc-windows-gnu, msys2 {0}) (push) Has been cancelled
Doc / deploy (push) Has been cancelled
Audit / audit (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / typo (push) Has been cancelled
Deny / audit (push) Has been cancelled
Defines cuprate members as workspace dependencies - Defines cuprate members as workspace dependencies - Changed all `path` import into `workspace = true` Co-authored-by: Boog900 <boog900@tutanota.com>
28 lines
821 B
TOML
28 lines
821 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 = { workspace = true }
|
|
cuprate-epee-encoding = { workspace = true }
|
|
cuprate-fixed-bytes = { workspace = true }
|
|
cuprate-types = { workspace = true, default-features = false, features = ["epee"] }
|
|
cuprate-helper = { workspace = true, 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
|