fixed warnings

This commit is contained in:
MrDulfin 2024-06-02 19:27:06 -04:00
parent 1f831f4f6d
commit 9c0c787229
2 changed files with 6 additions and 6 deletions

View file

@ -1,12 +1,12 @@
[package]
name = "kushi"
version = "0.1.0"
edition = "2021"
description = "A queue built for the Dango Music Player and Oden"
readme = "README.md"
homepage = "https://github.com/Dangoware/kushi-queue"
repository = "https://github.com/Dangoware/kushi-queue"
license = "MIT OR Apache-2.0"
description = "A queue built for the Dango Music Player and Oden"
homepage = "https://github.com/Dangoware/kushi-queue"
edition = "2021"
readme = "README.md"
repository = "https://github.com/Dangoware/kushi-queue"
keywords = ["queue","music","vec", "dmp"]
categories = ["data-structures"]

View file

@ -45,7 +45,7 @@ impl<
QueueItem<T, U, L> {
pub fn from_item_type(item: QueueItemType<T, U>, source: Option<L>) -> Self {
QueueItem {
item: item,
item,
state: QueueState::NoState,
source,
by_human: false,