Resolve the last couple of warnings

This commit is contained in:
Xyon 2023-08-24 23:37:56 +01:00
parent 442ff5d596
commit 4c67100b71
Signed by: xyon
GPG Key ID: DD18155D6B18078D
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
use manifold::{ManifoldContext, ManifoldData}; use manifold::{ManifoldData};
use manifold::error::{ManifoldError, ManifoldResult}; use manifold::error::{ManifoldError};
use poise::Command; use poise::Command;
pub fn collect_commands() -> Vec<Command<ManifoldData, ManifoldError>> { pub fn collect_commands() -> Vec<Command<ManifoldData, ManifoldError>> {

View File

@ -1,7 +1,7 @@
#![feature(string_remove_matches)] #![feature(string_remove_matches)]
#[macro_use] extern crate diesel; extern crate diesel;
#[macro_use] extern crate diesel_migrations; extern crate diesel_migrations;
#[macro_use] extern crate log; #[macro_use] extern crate log;
pub mod badgey; pub mod badgey;