fix(warnings): add an underscore to unused variables
This commit is contained in:
parent
f74cfd3ff3
commit
d9cee5ddb4
9 changed files with 9 additions and 9 deletions
|
|
@ -129,7 +129,7 @@ async fn start_auth_server() -> AuthServer{
|
|||
async move {
|
||||
|
||||
|
||||
let encryption_pairs = Vec::from_iter((0..=count).map(|v| {
|
||||
let encryption_pairs = Vec::from_iter((0..=count).map(|_v| {
|
||||
let rc4: Rc4<U5> = Rc4::new_from_slice( "CD&ML".as_bytes()).unwrap();
|
||||
let cypher = Box::new(rc4);
|
||||
let server_cypher: Box<dyn StreamCipher + Send> = cypher;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue