mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-11-17 00:07:55 +00:00
824651c8cf
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
* fixed-bytes: add `serde`, document feature flags * manual impl `serde::Deserialize` * add serde tests
19 lines
No EOL
462 B
TOML
19 lines
No EOL
462 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"] } |