Migrated to edition 24

This commit is contained in:
Dzuchun 2025-03-06 11:40:45 +02:00
commit 308e99b939
3 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@
name = "generic-array-storage"
version = "0.3.0"
authors = ["Diachenko Artem", "Artem 34ty804krytp92e239eku@gmail.com"]
edition = "2021"
edition = "2024"
description = "`nalgebra` storage implementation backed by `generic_array`"
documentation = "https://dzuchun.github.io/generic-array-storage/generic_array_storage/index.html"
readme = "README.md"

View file

@ -1,6 +1,6 @@
use generic_array::{ArrayLength, IntoArrayLength};
use nalgebra::{Const, DimName, DimNameAdd, DimNameMul, DimNameProd, DimNameSum, U0, U1, U2};
use typenum::{UInt, UTerm, B0, B1};
use typenum::{B0, B1, UInt, UTerm};
/// Convenience trait, used to define type **conv**ersions
///

View file

@ -3,10 +3,10 @@
use core::fmt::Debug;
use generic_array::{functional::FunctionalSequence, ArrayLength, GenericArray, IntoArrayLength};
use generic_array::{ArrayLength, GenericArray, IntoArrayLength, functional::FunctionalSequence};
use nalgebra::{
allocator::Allocator, DefaultAllocator, IsContiguous, Matrix, OMatrix, Owned, RawStorage,
RawStorageMut, Scalar, Storage,
DefaultAllocator, IsContiguous, Matrix, OMatrix, Owned, RawStorage, RawStorageMut, Scalar,
Storage, allocator::Allocator,
};
mod conv;