core: bump rust-toolchain from 1.97.1 to 1.98.0 (#25378)

Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
dependabot[bot]
2026-08-21 13:58:56 +00:00
committed by GitHub
parent 72df29b9a4
commit f123ab37f4
3 changed files with 3 additions and 3 deletions

View File

@@ -96,7 +96,7 @@ where
G: Fn(R) -> Vec<T>, G: Fn(R) -> Vec<T>,
{ {
let mut page = 1_i32; let mut page = 1_i32;
let mut results = Vec::with_capacity(0); let mut results = Vec::new();
loop { loop {
let response = fetch(page).await?; let response = fetch(page).await?;

View File

@@ -1,3 +1,3 @@
[toolchain] [toolchain]
channel = "1.97.1" channel = "1.98.0"
components = ["clippy", "rust-analyzer", "llvm-tools-preview"] components = ["clippy", "rust-analyzer", "llvm-tools-preview"]

View File

@@ -66,7 +66,7 @@ impl Outpost for ProxyOutpost {
async fn new(controller: Arc<OutpostController>) -> Result<Self> { async fn new(controller: Arc<OutpostController>) -> Result<Self> {
Ok(Self { Ok(Self {
controller, controller,
apps: ArcSwap::from_pointee(HashMap::with_capacity(0)), apps: ArcSwap::from_pointee(HashMap::new()),
certificate_store: CertificateStore::new(), certificate_store: CertificateStore::new(),
default_cert: Arc::new(tls::self_signed::generate_certifiedkey()?), default_cert: Arc::new(tls::self_signed::generate_certifiedkey()?),
}) })