Skip to content

Commit

Permalink
cargo fmt and fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ripytide committed Dec 3, 2023
1 parent e36846a commit 7037dd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/discrete_range_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ You should have received a copy of the GNU Affero General Public License
along with discrete_range_map. If not, see <https://www.gnu.org/licenses/>.
*/

use alloc::vec::Vec;
use core::cmp::Ordering;
use core::fmt::{self, Debug};
use core::iter::once;
use core::marker::PhantomData;
use alloc::vec::Vec;

use btree_monstrousity::btree_map::{
IntoIter as BTreeMapIntoIter, SearchBoundCustom,
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ along with discrete_range_map. If not, see <https://www.gnu.org/licenses/>.
#![feature(step_trait)]
#![allow(clippy::tabs_in_doc_comments)]
#![allow(clippy::needless_return)]
#![cfg_attr(not(feature = "test"), no_std)]
#![cfg_attr(not(test), no_std)]

extern crate alloc;

Expand Down

0 comments on commit 7037dd8

Please sign in to comment.