Skip to content

Commit

Permalink
temporarily disable failing lints in ampc/mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkeldenker committed Mar 27, 2024
1 parent 3483c18 commit 255c003
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/core/src/ampc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#![allow(clippy::type_complexity)]
#![allow(dead_code)]
#![allow(unused_variables)]

use std::{net::ToSocketAddrs, sync::Arc};

Expand Down Expand Up @@ -174,7 +177,7 @@ enum Resp<J, R> {
User(R),
}

struct Server<W>
pub struct Server<W>
where
W: Worker,
{
Expand Down

0 comments on commit 255c003

Please sign in to comment.