mirror of
https://gitlab.com/feliix42/embedded-plots.git
synced 2024-11-23 02:16:30 +00:00
Fix code to build on CI
This commit is contained in:
parent
350e5a029a
commit
fc9cef9120
2 changed files with 2 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
# todo: spin our own image
|
||||
image: jamwaffles/circleci-embedded-graphics:1.40.0-3
|
||||
image: registry.gitlab.com/mchodzikiewicz/embedded-plots-docker:latest
|
||||
|
||||
stages:
|
||||
- build
|
||||
|
|
|
@ -3,8 +3,7 @@ use core::ops::{Range};
|
|||
use crate::range_conv::Scalable;
|
||||
use crate::drawable_curve::DrawableCurve;
|
||||
use embedded_graphics::prelude::*;
|
||||
use itertools::MinMaxResult::MinMax;
|
||||
use itertools::{Itertools, MinMaxResult};
|
||||
use itertools::{Itertools, MinMaxResult::MinMax, MinMaxResult};
|
||||
|
||||
pub struct PlotPoint {
|
||||
pub x: i32,
|
||||
|
|
Loading…
Reference in a new issue