mirror of
https://codeberg.org/icewind/sourcenav.git
synced 2026-06-03 10:14:11 +02:00
msrv
This commit is contained in:
parent
f1280d2c9c
commit
22855e4099
4 changed files with 3 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -1,6 +1,6 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 4
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "aabb-quadtree"
|
||||
|
|
|
|||
|
|
@ -2,12 +2,13 @@
|
|||
name = "sourcenav"
|
||||
version = "0.3.0"
|
||||
authors = ["Robin Appelman <robin@icewind.nl>"]
|
||||
edition = "2018"
|
||||
edition = "2021"
|
||||
description = "parsing of SourceEngine .nav files"
|
||||
license = "AGPL-3.0"
|
||||
repository = "https://codeberg.org/icewind/sourcenav"
|
||||
documentation = "https://docs.rs/sourcenav"
|
||||
readme = "README.md"
|
||||
rust-version = "1.81.0"
|
||||
|
||||
[dependencies]
|
||||
binrw = "0.15.0"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ use aabb_quadtree::Spatial;
|
|||
use binrw::io::{Read, Seek};
|
||||
use binrw::{BinRead, BinReaderExt, BinResult, Endian};
|
||||
use euclid::{TypedPoint2D, TypedSize2D};
|
||||
use std::convert::TryFrom;
|
||||
use std::fmt;
|
||||
use std::fmt::Debug;
|
||||
use std::ops::Index;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
pub use crate::navmesh::NavArea;
|
||||
use binrw::io::{Read, Seek};
|
||||
use binrw::{BinRead, BinReaderExt};
|
||||
use std::convert::TryFrom;
|
||||
use thiserror::Error;
|
||||
|
||||
/// Errors that can occur when parsing the binary nav file
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue