//! Standardized durable producer settings.
use ;
/// Producer settings with the platform's standard **durable** delivery semantics
/// (apply to your own `rdkafka::ClientConfig`; also set `client.id = <service>`):
///
/// - `acks=all` — wait for all in-sync replicas (pair with broker
/// `min.insync.replicas>=2`).
/// - `enable.idempotence=true` — no duplicates on retry.
/// - `compression.type=lz4`.