fix some warnings

This commit is contained in:
Sebastian Kuzminsky 2025-01-21 14:26:13 -06:00
parent d2f4ca05b0
commit 6198f327d7
3 changed files with 1 additions and 2 deletions

View file

@ -1,6 +1,5 @@
use clap::Parser; use clap::Parser;
use tools::Recipe;
use tools::Repo; use tools::Repo;
#[derive(Debug, clap::Parser)] #[derive(Debug, clap::Parser)]

View file

@ -68,6 +68,7 @@ pub struct Purchase {
} }
#[derive(Debug, serde::Deserialize)] #[derive(Debug, serde::Deserialize)]
#[allow(non_camel_case_types)]
pub enum Action { pub enum Action {
process(String), process(String),
print, print,

View file

@ -1,5 +1,4 @@
use crate::recipe::Recipe; use crate::recipe::Recipe;
use std::fmt;
#[derive(Debug)] #[derive(Debug)]
pub struct Repo { pub struct Repo {