1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

Bump rustc to 1.65

This commit is contained in:
Quentin Gliech
2022-11-03 15:47:38 +01:00
parent a414936484
commit eeb442b6d0
4 changed files with 5 additions and 5 deletions

View File

@ -56,7 +56,7 @@ impl File {
#[tracing::instrument(skip_all, fields(url))]
async fn load<T: EnumEntry>(mut self) -> anyhow::Result<Self> {
tracing::Span::current().record("url", &T::URL);
tracing::Span::current().record("url", T::URL);
self.sections.extend(T::sections());
for (key, value) in T::fetch(&self.client).await? {
self.items.entry(key).or_default().push(value);