Skip to content
This repository has been archived by the owner on Aug 6, 2021. It is now read-only.

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyBanks committed Feb 15, 2020
1 parent a4060d3 commit 8678e53
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/bin/serve.rs
Expand Up @@ -4,7 +4,6 @@
clippy::option_unwrap_used,
clippy::result_unwrap_used
)]
#![deny(unconditional_recursion)]

use std::{fs::File, io::BufReader, sync::Arc};

Expand Down
1 change: 0 additions & 1 deletion src/lib/speedruns.rs
Expand Up @@ -7,7 +7,6 @@
)]
#![allow(missing_docs, clippy::useless_attribute, clippy::useless_vec)]
#![warn(missing_debug_implementations)]
#![deny(unconditional_recursion)]

/// Types for the speedrun.com API data we consume and utilities for normalizing it.
pub mod api;
Expand Down
9 changes: 9 additions & 0 deletions src/lib/utils/mod.rs
@@ -1,4 +1,13 @@
//! Shared utils.
#![feature(
arbitrary_self_types,
label_break_value,
option_unwrap_none,
never_type
)]
#![allow(missing_docs, clippy::useless_attribute, clippy::useless_vec)]
#![warn(missing_debug_implementations)]

use derive_more::From;
use err_derive::Error;
#[allow(unused)] use log::{debug, error, info, trace, warn};
Expand Down

1 comment on commit 8678e53

@vercel
Copy link

@vercel vercel bot commented on 8678e53 Feb 15, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.