Compare commits

..

1 Commits

Author SHA1 Message Date
96a05cd76a Update Rust crate actix-rt to v2.10.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2024-06-10 00:13:06 +00:00
3 changed files with 203 additions and 321 deletions

520
rust/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -144,7 +144,7 @@ impl GameRules {
/// Check out whether these game rules are valid or not
pub fn is_valid(&self) -> bool {
self.get_errors().is_empty()
return self.get_errors().is_empty();
}
}

View File

@ -98,7 +98,7 @@ impl<'a> GameMapWidget<'a> {
}
}
impl Widget for GameMapWidget<'_> {
impl<'a> Widget for GameMapWidget<'a> {
fn render(mut self, area: Rect, buf: &mut Buffer) {
let alphabet = PlayConfiguration::default().ordinate_alphabet;