justcode-core 0.3.0

Compact binary encoder/decoder with space-efficient encoding
Documentation
[package]
name = "justcode-core"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
description.workspace = true
readme = "../README.md"
repository = "https://github.com/entropy-tamer/justcode"
homepage = "https://github.com/entropy-tamer/justcode"
keywords = ["serialization", "binary", "encoding", "decoding", "compact"]
categories = ["encoding", "no-std"]

[features]
default = ["std", "derive"]
std = []
derive = ["justcode-derive"]
no-std-test = []

[dependencies]
thiserror.workspace = true
anyhow.workspace = true
justcode-derive = { version = "0.3.0", optional = true }

[dev-dependencies]
criterion.workspace = true

[[example]]
name = "basic"
path = "../examples/basic.rs"

[lints.clippy]
pedantic = "warn"
nursery = "warn"
cargo = "warn"
all = "warn"