cuprate/net/fixed-bytes/Cargo.toml

12 lines
227 B
TOML
Raw Normal View History

2024-01-29 22:32:16 +00:00
[package]
name = "fixed-bytes"
version = "0.1.0"
edition = "2021"
[features]
default = ["std"]
std = ["bytes/std", "dep:thiserror"]
[dependencies]
thiserror = { workspace = true, optional = true }
bytes = { workspace = true }