Skip to content

Commit

Permalink
reformat shellchat with the latest alphabetization rules
Browse files Browse the repository at this point in the history
  • Loading branch information
bunnie committed Sep 23, 2024
1 parent 3a9a7eb commit e61a2e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions services/shellchat/src/cmds/net_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use std::sync::{Arc, Mutex};
use std::thread;
use std::time::{Duration, Instant};

use String;
use com::api::NET_MTU;
use net::NetPingCallback;
#[cfg(any(feature = "precursor", feature = "renode"))]
Expand All @@ -14,13 +15,12 @@ use num_traits::*;
use perflib::*;
use xous::MessageEnvelope;
use xous_ipc::Buffer;
use String;
#[cfg(feature = "ditherpunk")]
use {gam::DecodePng, std::str::FromStr};
#[cfg(feature = "websocket")]
use {
tls::Tls,
tungstenite::{stream::MaybeTlsStream, WebSocket},
tungstenite::{WebSocket, stream::MaybeTlsStream},
};

use crate::{CommonEnv, ShellCmdApi, ShellOpcode};
Expand Down Expand Up @@ -645,9 +645,9 @@ impl<'a> ShellCmdApi<'a> for NetCmd {
// this starts the performance counter
pm.start();

use aes::Aes256;
use aes::cipher::generic_array::GenericArray;
use aes::cipher::{BlockEncrypt, KeyInit};
use aes::Aes256;

let mut key_array: [u8; 32];
let mut data_array: [u8; 16];
Expand Down

0 comments on commit e61a2e3

Please sign in to comment.