chore: run cargo +nightly fmt --all (#869)

Co-authored-by: Benoît Cortier <3809077+CBenoit@users.noreply.github.com>
This commit is contained in:
Alex Yusiuk
2025-07-17 11:05:50 +00:00
committed by GitHub
co-authored by Benoît Cortier
parent 2b3f558c0a
commit 8287cf0681
3 changed files with 5 additions and 5 deletions
+2 -1
View File
@@ -1,6 +1,8 @@
#![allow(clippy::print_stdout)]
use core::num::ParseIntError;
use core::str::FromStr;
use std::path::PathBuf;
use anyhow::Context as _;
use clap::clap_derive::ValueEnum;
@@ -8,7 +10,6 @@ use clap::Parser;
use ironrdp::connector::{self, Credentials};
use ironrdp::pdu::rdp::capability_sets::{client_codecs_capabilities, MajorPlatformType};
use ironrdp::pdu::rdp::client_info::PerformanceFlags;
use std::path::PathBuf;
use tap::prelude::*;
use url::Url;
+1 -2
View File
@@ -7,11 +7,10 @@ extern crate alloc;
#[macro_use]
extern crate tracing;
use core::fmt::{self, Display};
use alloc::borrow::Cow;
use alloc::collections::BTreeMap;
use alloc::string::String;
use core::fmt::{self, Display};
pub type Key = Cow<'static, str>;
+2 -2
View File
@@ -4,11 +4,11 @@
extern crate alloc;
use core::fmt;
use alloc::borrow::ToOwned;
use alloc::string::{String, ToString};
use alloc::vec::Vec;
use core::fmt;
use ironrdp_propertyset::{PropertySet, Value};
#[derive(Debug, Clone)]