Iris's decision: it lives in this repository for now, included by path, with its history left in the iris/iris repository on the gitea remote (this is its main at 7b54aaf, byte-identical to the public GitHub copy). It gets its own repository back once it has proved itself here. RUST.md's I0 records the decision and what the first build said: the tree does not compile on the current nightly because const_trait_impl now requires traits to be declared 'const trait', which is the first item of I0b. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
12 lines
131 B
Rust
12 lines
131 B
Rust
mod align;
|
|
mod axis;
|
|
mod len;
|
|
mod pos;
|
|
|
|
use crate::util::Vec2;
|
|
|
|
pub use align::*;
|
|
pub use axis::*;
|
|
pub use len::*;
|
|
pub use pos::*;
|