[package]
edition = "2024"
rust-version = "1.88"
name = "zerodds-rtps"
version = "1.0.0-rc.1"
authors = ["ZeroDDS Contributors"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DDSI-RTPS 2.5 Wire-Stack für ZeroDDS — Submessages, Writer/Reader State-Machines, Reliable + Fragmentation, Inline-QoS, ParameterList, BuiltinTopicData. Pure-Rust no_std + alloc."
homepage = "https://zerodds.org"
documentation = "https://docs.rs/zerodds-rtps"
readme = "README.md"
keywords = [
"dds",
"rtps",
"wire-protocol",
"no-std",
]
categories = [
"network-programming",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/zero-objects/zero-dds"
resolver = "2"
[features]
alloc = []
default = [
"std",
"metrics",
]
inspect = [
"dep:zerodds-inspect-endpoint",
"zerodds-inspect-endpoint/inspect",
]
metrics = [
"std",
"dep:zerodds-monitor",
]
std = [
"alloc",
"zerodds-foundation/std",
]
[lib]
name = "zerodds_rtps"
path = "src/lib.rs"
[[test]]
name = "compliance_rtps"
path = "tests/compliance_rtps.rs"
[[test]]
name = "cyclone_compliance"
path = "tests/cyclone_compliance.rs"
[[test]]
name = "cyclone_he_must_understand"
path = "tests/cyclone_he_must_understand.rs"
[[test]]
name = "fixture_loader"
path = "tests/fixture_loader.rs"
[[test]]
name = "fuzz_smoke"
path = "tests/fuzz_smoke.rs"
[[test]]
name = "proptest_roundtrip"
path = "tests/proptest_roundtrip.rs"
[[test]]
name = "reliable_e2e"
path = "tests/reliable_e2e.rs"
[[test]]
name = "sedp_qos_roundtrip"
path = "tests/sedp_qos_roundtrip.rs"
[[test]]
name = "user_data_propagation"
path = "tests/user_data_propagation.rs"
[[bench]]
name = "decode_hotpaths"
path = "benches/decode_hotpaths.rs"
harness = false
[[bench]]
name = "writer_dispatch"
path = "benches/writer_dispatch.rs"
harness = false
[dependencies.zerodds-cdr]
version = "1.0.0-rc.1"
features = ["alloc"]
default-features = false
[dependencies.zerodds-foundation]
version = "1.0.0-rc.1"
features = ["alloc"]
default-features = false
[dependencies.zerodds-inspect-endpoint]
version = "1.0.0-rc.1"
optional = true
[dependencies.zerodds-monitor]
version = "1.0.0-rc.1"
features = ["std"]
optional = true
default-features = false
[dependencies.zerodds-qos]
version = "1.0.0-rc.1"
features = ["alloc"]
default-features = false
[dependencies.zerodds-types]
version = "1.0.0-rc.1"
features = ["alloc"]
default-features = false
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.proptest]
version = "1.4"
features = ["std"]
default-features = false
[lints.clippy]
dbg_macro = "deny"
doc_overindented_list_items = "allow"
expect_used = "deny"
panic = "deny"
print_stderr = "warn"
print_stdout = "warn"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "deny"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1