[package]
edition = "2021"
name = "flat_message"
version = "0.2.0"
authors = [
"Gavrilut Dragos <gavrilut.dragos@gmail.com>",
"Andrei Damian <andreidaamian@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-copy, schema-less serialization and deserialization fast library for Rust."
documentation = "https://docs.rs/flat_message"
readme = "README.md"
keywords = [
"serialization",
"deserialize",
"serialize",
"zero-copy",
"schema-less",
]
categories = ["encoding"]
license = "MIT"
repository = "https://github.com/gdt050579/FlatMessage"
[features]
benchmarks = ["dep:serde"]
check_crc32 = []
default = []
smallvec = [
"flat_message_proc_macro/smallvec",
"dep:smallvec",
]
[lib]
name = "flat_message"
path = "src/lib.rs"
[dependencies.crc32fast]
version = "1"
[dependencies.flat_message_proc_macro]
version = "0.2.0"
[dependencies.serde]
version = "1"
optional = true
[dependencies.smallvec]
version = "1.15.1"
optional = true
[lints.clippy]
module_inception = "allow"
new_without_default = "allow"