automatic cargo CI changes

This commit is contained in:
PlexSheep 2024-04-04 20:47:58 +00:00 committed by github-actions[bot]
parent 15edd58d3b
commit 966f73efef
3 changed files with 6 additions and 4 deletions

View File

@ -18,7 +18,11 @@ where
SL: Solver<'wl, WL>, SL: Solver<'wl, WL>,
SL: 'wl, SL: 'wl,
{ {
fn build(wordlist: &'wl WL, solver: SL, builder: GameBuilder<'wl, WL>) -> crate::error::WResult<Self> { fn build(
wordlist: &'wl WL,
solver: SL,
builder: GameBuilder<'wl, WL>,
) -> crate::error::WResult<Self> {
Ok(Self { Ok(Self {
wordlist, wordlist,
solver, solver,

View File

@ -1,6 +1,6 @@
use chrono::{self, Duration, NaiveDateTime, NaiveTime, TimeDelta}; use chrono::{self, Duration, NaiveDateTime, NaiveTime, TimeDelta};
use libpt::log::debug;
use core::panic; use core::panic;
use libpt::log::debug;
use std::fmt::Display; use std::fmt::Display;
use std::ops::Div; use std::ops::Div;

View File

@ -2,8 +2,6 @@
// #![warn(missing_docs)] // #![warn(missing_docs)]
#![warn(missing_debug_implementations)] #![warn(missing_debug_implementations)]
use std::thread::sleep_ms;
use clap::Parser; use clap::Parser;
use libpt::log::*; use libpt::log::*;