From 89a6aacecd15692e34e7442bd29b32ed21ea1f4a Mon Sep 17 00:00:00 2001 From: ice_iix Date: Sat, 27 Jun 2020 18:28:16 -0700 Subject: [PATCH] cargo fmt --- protocol/src/protocol/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/protocol/src/protocol/mod.rs b/protocol/src/protocol/mod.rs index c01a566..62d0acf 100644 --- a/protocol/src/protocol/mod.rs +++ b/protocol/src/protocol/mod.rs @@ -44,7 +44,8 @@ use std::sync::atomic::{AtomicBool, AtomicI32, Ordering}; use std::time::{Duration, Instant}; pub const SUPPORTED_PROTOCOLS: [i32; 21] = [ - 736, 735, 578, 575, 498, 490, 485, 480, 477, 452, 451, 404, 340, 316, 315, 210, 109, 107, 74, 47, 5, + 736, 735, 578, 575, 498, 490, 485, 480, 477, 452, 451, 404, 340, 316, 315, 210, 109, 107, 74, + 47, 5, ]; static CURRENT_PROTOCOL_VERSION: AtomicI32 = AtomicI32::new(SUPPORTED_PROTOCOLS[0]);