[package]
edition = "2024"
rust-version = "1.85.1"
name = "rsomeip-bytes"
version = "0.2.0"
authors = ["Bruno Silva <brunoldsilva@pm.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Serialization crate for the SOME/IP on-wire format."
documentation = "https://docs.rs/rsomeip-bytes"
readme = "README.md"
keywords = [
"someip",
"bytes",
"serialization",
]
categories = [
"automotive",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/brunoldsilva/rsomeip"
[features]
default = ["std"]
std = [
"bytes/std",
"thiserror/std",
]
[lib]
name = "rsomeip_bytes"
path = "src/lib.rs"
[[bench]]
name = "deserialize"
path = "benches/deserialize.rs"
harness = false
[[bench]]
name = "serialize"
path = "benches/serialize.rs"
harness = false
[dependencies.bytes]
version = "1.10.1"
default-features = false
[dependencies.thiserror]
version = "2.0.14"
default-features = false
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[lints.clippy]
arbitrary_source_item_ordering = "allow"
big_endian_bytes = "allow"
blanket_clippy_restriction_lints = "allow"
cfg_not_test = "allow"
exhaustive_enums = "allow"
exhaustive_structs = "allow"
impl_trait_in_params = "allow"
implicit_return = "allow"
missing_inline_in_public_items = "allow"
missing_trait_methods = "allow"
multiple_crate_versions = "allow"
pub_use = "allow"
question_mark_used = "allow"
ref_patterns = "allow"
return_and_then = "allow"
self_named_module_files = "allow"
separated_literal_suffix = "allow"
shadow_reuse = "allow"
single_call_fn = "allow"
std_instead_of_alloc = "allow"
std_instead_of_core = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.restriction]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"