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