facet-msgpack 0.40.0

MsgPack binary format for facet
Documentation
[package]
name = "facet-msgpack"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
description = "MsgPack binary format for facet"
keywords = ["msgpack", "binary", "serialization", "facet"]
categories = ["encoding", "parsing"]
homepage = "https://facet.rs"

[package.metadata]

[package.metadata."docs.rs"]
rustdoc-args = ["--html-in-header", "arborium-header.html"]

[dependencies]
facet-core = { path = "../facet-core", version = "0.40.0" }
facet-format = { path = "../facet-format", version = "0.40.0" }
facet-reflect = { path = "../facet-reflect", version = "0.40.0" }
miette = { workspace = true }

# Axum integration (optional)
axum-core = { version = "0.5", default-features = false, optional = true }
http = { workspace = true, optional = true }
http-body-util = { version = "0.1", default-features = false, optional = true }

[[bench]]
name = "vs_msgpack"
harness = false

[[test]]
name = "format_suite"
harness = false

[features]
default = []
std = []
jit = ["facet-format/jit"]

# Axum HTTP integration
axum = ["std", "dep:axum-core", "dep:http", "dep:http-body-util"]