[package] name = "serde-avro-bytes" version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" description = "Efficiently store Rust idiomatic bytes related types in Avro encoding." repository = "https://github.com/Akanoa/serde-avro-bytes" readme = "Readme.md" keywords = ["avro", "serde", "bytes"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[example]] name = "bstr" path = "examples/bstr.rs" required-features = ["bstr"] [features] default = [] bstr = ["dep:bstr"] [dependencies] apache-avro = "0.16.0" serde = "1.0.197" bstr = { version = "1.9.1", optional = true }