From 5c84ecd8c5b3f265734c4903f9cd28e578d364f2 Mon Sep 17 00:00:00 2001 From: ice_iix Date: Fri, 24 Dec 2021 14:26:58 -0800 Subject: [PATCH] cargo fmt --all --- protocol/src/protocol/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protocol/src/protocol/mod.rs b/protocol/src/protocol/mod.rs index d32413f..687165d 100644 --- a/protocol/src/protocol/mod.rs +++ b/protocol/src/protocol/mod.rs @@ -40,8 +40,8 @@ use std::net::TcpStream; use std::sync::atomic::{AtomicBool, AtomicI32, Ordering}; pub const SUPPORTED_PROTOCOLS: [i32; 26] = [ - 757, 756, 754, 753, 751, 736, 735, 578, 575, 498, 490, 485, 480, 477, 452, 451, 404, 340, 316, 315, - 210, 109, 107, 74, 47, 5, + 757, 756, 754, 753, 751, 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]);