automatic cargo CI changes
This commit is contained in:
parent
a6e7ca5368
commit
f531287bba
|
@ -1,7 +1,7 @@
|
||||||
use std::{convert::Infallible, fmt::Display, str::FromStr};
|
use std::{convert::Infallible, fmt::Display, str::FromStr};
|
||||||
|
|
||||||
use crate::{store::Sequence, Item, Store};
|
use crate::{store::Sequence, Item, Store};
|
||||||
use rand::{prelude::*, seq::SliceRandom};
|
use rand::seq::SliceRandom;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
const ALPHABET: &str = "qwertzuiopasdfghjklyxcvbnmQWERTZUIOPASDFGHJKLYXCVBNM";
|
const ALPHABET: &str = "qwertzuiopasdfghjklyxcvbnmQWERTZUIOPASDFGHJKLYXCVBNM";
|
||||||
|
|
|
@ -2,13 +2,13 @@ use std::{collections::HashMap, convert::Infallible, str::FromStr};
|
||||||
|
|
||||||
use libpt::log::{debug, error, info};
|
use libpt::log::{debug, error, info};
|
||||||
use warp::{
|
use warp::{
|
||||||
filters::{path::param, BoxedFilter},
|
filters::BoxedFilter,
|
||||||
http::StatusCode,
|
http::StatusCode,
|
||||||
reject::{MissingHeader, Rejection},
|
reject::{MissingHeader, Rejection},
|
||||||
reply, Filter, Reply,
|
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 {
|
pub fn with_store(store: Store) -> impl Filter<Extract = (Store,), Error = Infallible> + Clone {
|
||||||
warp::any().map(move || store.clone())
|
warp::any().map(move || store.clone())
|
||||||
|
|
Loading…
Reference in New Issue