fix(upgrade): errors from Rust 2024 edition

- gen is a reserved keyword (→ renamed module to generator)
- ref in patterns with implicit borrowing (→ removed ref)
- & pattern with implicit borrowing (→ added & to outer pattern)
This commit is contained in:
Edward Langley
2026-04-11 00:38:30 -07:00
parent ee6739158e
commit d4f6efd1c0
5 changed files with 11 additions and 11 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "improvise"
version = "0.1.0-rc1"
edition = "2021"
edition = "2024"
description = "Terminal pivot-table modeling in the spirit of Lotus Improv"
license = "Apache-2.0"
repository = "https://github.com/fiddlerwoaroof/improvise"