mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-16 15:58:14 +00:00
22 lines
No EOL
488 B
TOML
22 lines
No EOL
488 B
TOML
[package]
|
|
name = "cuprate-fixed-bytes"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Boog900"]
|
|
|
|
[features]
|
|
default = ["std", "serde"]
|
|
std = ["bytes/std", "dep:thiserror"]
|
|
serde = ["bytes/serde", "dep:serde"]
|
|
|
|
[dependencies]
|
|
thiserror = { workspace = true, optional = true }
|
|
bytes = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = { workspace = true, features = ["std"] }
|
|
|
|
[lints]
|
|
workspace = true |