Skip to content

Commit

Permalink
skip itertools on wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
bryevdv committed Oct 24, 2023
1 parent aede088 commit 05d2d5e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use egui::{
Align2, Color32, NumExt, Pos2, Rect, RichText, ScrollArea, Slider, Stroke, TextStyle, Vec2,
};
use egui_extras::{Column, TableBuilder};
#[cfg(not(target_arch = "wasm32"))]
use itertools::Itertools;
use percentage::{Percentage, PercentageInteger};
use regex::{escape, Regex};
Expand Down

0 comments on commit 05d2d5e

Please sign in to comment.