[package]
edition = "2024"
name = "messagepack-core"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "messagepack for `no_std`"
readme = "README.md"
keywords = ["messagepack"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/tunamaguro/messagepack-rs"
[package.metadata.docs.rs]
all-features = true
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "messagepack_core"
path = "src/lib.rs"
[[test]]
name = "any"
path = "tests/any.rs"
required-features = ["alloc"]
[[test]]
name = "array"
path = "tests/array.rs"
required-features = ["alloc"]
[[test]]
name = "bin"
path = "tests/bin.rs"
required-features = ["alloc"]
[[test]]
name = "float"
path = "tests/float.rs"
required-features = ["alloc"]
[[test]]
name = "int"
path = "tests/int.rs"
required-features = ["alloc"]
[[test]]
name = "map"
path = "tests/map.rs"
required-features = ["alloc"]
[[test]]
name = "str"
path = "tests/str.rs"
required-features = ["alloc"]
[dependencies.num-traits]
version = "0.2"
default-features = false
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.rstest]
version = "0.26"