normalize edition to 2024
Some checks failed
per-push tests / build (push) Successful in 36s
per-push tests / test-frontend (push) Failing after 4s
per-push tests / timed-decomposer-parse (push) Has been skipped
per-push tests / test-utility (push) Successful in 35s
per-push tests / test-backend (push) Successful in 37s
Some checks failed
per-push tests / build (push) Successful in 36s
per-push tests / test-frontend (push) Failing after 4s
per-push tests / timed-decomposer-parse (push) Has been skipped
per-push tests / test-utility (push) Successful in 35s
per-push tests / test-backend (push) Successful in 37s
Signed-off-by: Ava Affine <ava@sunnypup.io>
This commit is contained in:
parent
351258444a
commit
16aa08d1e6
4 changed files with 4 additions and 5 deletions
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "decomposer"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
edition = "2024"
|
||||
authors = ["Ava Affine <ava@sunnypup.io>"]
|
||||
|
||||
[dependencies]
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "mycelium"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
num = { version = "0.4.3", features = ["alloc"] }
|
||||
|
|
|
|||
|
|
@ -187,7 +187,7 @@ impl Iterator for Lexer {
|
|||
}
|
||||
|
||||
let res = self.seek_next_token();
|
||||
if let Err(ref e) = res {
|
||||
if let Err(e) = &res {
|
||||
self.has_error_state = Some(e.clone());
|
||||
}
|
||||
|
||||
|
|
@ -617,7 +617,7 @@ impl Lexer {
|
|||
}
|
||||
|
||||
if let Some(ref res) = output {
|
||||
if let Err(ref e) = res {
|
||||
if let Err(e) = &res {
|
||||
self.has_error_state = Some(e.clone());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@
|
|||
*/
|
||||
|
||||
#![cfg_attr(not(test), no_std)]
|
||||
#![feature(let_chains)]
|
||||
#![feature(iter_collect_into)]
|
||||
#![feature(if_let_guard)]
|
||||
#![feature(core_float_math)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue