Compare commits

..

No commits in common. "040e480dd038be13d64d6978c1879d6106263eab" and "c7d6bd8aef89c72f593e731c9a455f1063fb8960" have entirely different histories.

5 changed files with 4 additions and 6 deletions

View file

@ -175,12 +175,10 @@ mod tests {
}
fn dummy_listener(_event: &TestEvent, _context: &mut DummyContext) -> bool {
println!("dummy_listener event fired");
false
}
fn other_dummy_listener(_event: &TestEvent, _context: &mut DummyContext) -> bool {
println!("other_dummy_listener event fired");
false
}

View file

@ -1,5 +1,5 @@
use std::simd;
use std::simd::prelude::{SimdFloat, SimdUint};
use std::simd::{SimdFloat, SimdUint};
use crate::graphics::{edge_function, per_pixel_triangle_2d, BlendFunction, RgbaBitmap, RGBA};
use crate::math::Vector2;

View file

@ -1,6 +1,6 @@
use std::ops::{Mul, MulAssign};
use std::simd;
use std::simd::prelude::{SimdFloat, SimdUint};
use std::simd::{SimdFloat, SimdUint};
use byteorder::{ReadBytesExt, WriteBytesExt};

View file

@ -1,6 +1,6 @@
use std::ops::{Add, Div, Mul, Sub};
use std::simd;
use std::simd::prelude::{SimdFloat, SimdPartialOrd};
use std::simd::{SimdFloat, SimdPartialOrd};
mod circle;
mod matrix3x3;

View file

@ -4,4 +4,4 @@
# necessarily see a reason to keep using whatever nightly version is the latest, and would
# prefer stick with versions that appear to be stable and just periodically do manual updates
# here to get *some* peace of mind in terms of build stability.
channel = "nightly-2024-09-05"
channel = "nightly-2023-11-10"