From 936315c2ffd3eb1919e4851436352a43ccebf69e Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Sat, 12 Apr 2025 18:12:03 -0500 Subject: [PATCH] remove empty imports --- src/instructions/vector.rs | 1 - src/main.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/instructions/vector.rs b/src/instructions/vector.rs index 8fbb409..1120f55 100644 --- a/src/instructions/vector.rs +++ b/src/instructions/vector.rs @@ -1,6 +1,5 @@ use crate::push::state::PushState; use rust_decimal::Decimal; -use std::collections::VecDeque; /// Generates an index between 0 and length. Takes abs(num) and then mods it by length. fn bounded_idx(num: i128, length: usize) -> usize { diff --git a/src/main.rs b/src/main.rs index 010d33f..f3a87a1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,6 @@ use instructions::utils::NumericTrait; use rust_decimal::MathematicalOps; use rust_decimal::prelude::*; -use std::collections::VecDeque; mod instructions; mod push;