conlang: Update to Rust Edition 2024

This commit is contained in:
John 2025-03-14 06:09:39 -05:00
parent 68e676eda4
commit 27d1d07ed8
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ resolver = "2"
repository = "https://git.soft.fish/j/Conlang"
version = "0.0.9"
authors = ["John Breaux <j@soft.fish>"]
edition = "2021"
edition = "2024"
license = "MIT"
publish = ["soft-fish"]

View File

@ -120,7 +120,7 @@ impl<'a> Table<'a> {
self.impls.push(item);
}
pub fn handle_iter(&mut self) -> impl Iterator<Item = Handle> {
pub fn handle_iter(&mut self) -> impl Iterator<Item = Handle> + use<> {
self.kinds.keys()
}