serde_store 0.2.0

A Rust implementation of the Haskell store binary serialization format using Serde
Documentation
[dependencies.byteorder]
version = "1.5.0"

[dependencies.either]
features = ["serde"]
optional = true
version = "1.13"

[dependencies.serde]
features = ["serde_derive"]
version = "1.0.219"

[dependencies.smol_str]
features = ["serde"]
optional = true
version = "0.3"

[dependencies.thiserror]
version = "2.0.12"

[dev-dependencies.serde_json]
version = "1.0"

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

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

[features]
either = ["dep:either"]
smol_str = ["dep:smol_str"]

[lib]
name = "serde_store"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["encoding", "no-std"]
description = "A Rust implementation of the Haskell store binary serialization format using Serde"
documentation = "https://docs.rs/serde_store"
edition = "2021"
homepage = "https://github.com/awgn/serde_store"
keywords = ["serialization", "serde", "haskell", "store", "binary"]
license = "MIT OR Apache-2.0"
name = "serde_store"
readme = "README.md"
repository = "https://github.com/awgn/serde_store"
version = "0.2.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "either_tests"
path = "tests/either_tests.rs"

[[test]]
name = "roundtrip_tests"
path = "tests/roundtrip_tests.rs"

[[test]]
name = "smolstr_tests"
path = "tests/smolstr_tests.rs"