Bump version, enable binned

This commit is contained in:
Dominik Werder
2025-05-15 15:24:33 +02:00
parent 3bcdd2299f
commit 817240fb45
3 changed files with 118 additions and 137 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ const POLL_READ_TIMEOUT: Duration = Duration::from_millis(1000 * 10);
const DO_RATE_CHECK: bool = false;
const CHANNEL_STATUS_PONG_QUIET: Duration = Duration::from_millis(1000 * 60 * 60);
const METRICS_EMIT_IVL: Duration = Duration::from_millis(1000 * 1);
const USE_BIN_WRITER: bool = false;
const USE_BIN_WRITER: bool = true;
macro_rules! trace3 { ($($arg:expr),*) => ( if false { trace!($($arg),*); } ); }