automatic cargo CI changes

This commit is contained in:
cscherrNT 2024-03-08 16:05:58 +00:00 committed by github-actions[bot]
parent a6e7ca5368
commit f531287bba
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
use std::{convert::Infallible, fmt::Display, str::FromStr};
use crate::{store::Sequence, Item, Store};
use rand::{prelude::*, seq::SliceRandom};
use rand::seq::SliceRandom;
use serde::{Deserialize, Serialize};
const ALPHABET: &str = "qwertzuiopasdfghjklyxcvbnmQWERTZUIOPASDFGHJKLYXCVBNM";

View File

@ -2,13 +2,13 @@ use std::{collections::HashMap, convert::Infallible, str::FromStr};
use libpt::log::{debug, error, info};
use warp::{
filters::{path::param, BoxedFilter},
filters::BoxedFilter,
http::StatusCode,
reject::{MissingHeader, Rejection},
reply, Filter, Reply,
};
use crate::{Client, Id, Item, Store, Token, StoreErr};
use crate::{Client, Id, Store, StoreErr, Token};
pub fn with_store(store: Store) -> impl Filter<Extract = (Store,), Error = Infallible> + Clone {
warp::any().map(move || store.clone())