mirror of
https://github.com/goauthentik/authentik.git
synced 2026-08-30 18:51:39 -07:00
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:
@@ -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?;
|
||||||
|
|||||||
@@ -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"]
|
||||||
|
|||||||
@@ -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()?),
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user