From 9a52281382312e18241b656c6e2e994e90cf50b6 Mon Sep 17 00:00:00 2001 From: William Brown Date: Wed, 24 Jan 2024 10:43:26 +1000 Subject: [PATCH] Remove unused import that breaks builds on newer rust versions --- server/lib/src/idm/authsession.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/server/lib/src/idm/authsession.rs b/server/lib/src/idm/authsession.rs index 734864f0d..64918da69 100644 --- a/server/lib/src/idm/authsession.rs +++ b/server/lib/src/idm/authsession.rs @@ -3,7 +3,6 @@ //! factor to assert that the user is legitimate. This also contains some //! support code for asynchronous task execution. use std::collections::BTreeMap; -pub use std::collections::BTreeSet as Set; use std::convert::TryFrom; use std::fmt; use std::time::Duration;