Skip to content
This repository was archived by the owner on Dec 28, 2021. It is now read-only.

Commit dc23d4b

Browse files
Cargo fix.
1 parent 7ba74e3 commit dc23d4b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/rust/ensogl/example/src/dom_symbols.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![allow(missing_docs)]
22

33
use ensogl_core::prelude::*;
4-
use ensogl_core::traits::*;
4+
55

66
use ensogl_core::display::navigation::navigator::Navigator;
77
use ensogl_core::display::symbol::geometry::Sprite;

src/rust/ensogl/lib/text/src/typeface/glyph.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use ensogl_core::display::symbol::shader::builder::CodeTemplate;
1616
use ensogl_core::display::world::*;
1717
use ensogl_core::system::gpu;
1818
use ensogl_core::system::gpu::texture;
19-
use ensogl_core::system::gpu::types::*;
19+
2020

2121
// =============
2222
// === Glyph ===

src/rust/ide/lib/span-tree/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pub mod prelude {
4747
}
4848

4949
use prelude::*;
50-
use traits::*;
50+
5151

5252
use crate::generate::Context;
5353

src/rust/ide/view/graph-editor/src/component/edge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ impl SemanticSplit {
989989
/// Shapes that are at the split location.
990990
fn split_shapes(&self) -> Vec<display::object::Id> {
991991
self.index_filtered_shapes(move |index| {
992-
(index == self.split_index as i32)
992+
index == self.split_index as i32
993993
})
994994
}
995995
}

0 commit comments

Comments
 (0)