Update dependencies (icon for queue toggle button)

This commit is contained in:
Connor Wittman 2024-02-02 17:19:39 -05:00
parent 33c1b52ba2
commit fd49ee3a0f
2 changed files with 12 additions and 1 deletions

10
Cargo.lock generated
View File

@ -1141,6 +1141,7 @@ checksum = "f41f2deec9249d16ef6b1a8442fbe16013f67053797052aa0b7d2f5ebd0f0098"
dependencies = [
"icondata_bs",
"icondata_core",
"icondata_ri",
]
[[package]]
@ -1158,6 +1159,15 @@ version = "0.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1640a4c1d5ddd08ab1d9854ffa7a2fa3dc52339492676b6d3031e77ca579f434"
[[package]]
name = "icondata_ri"
version = "0.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d3adc5b64b22d10ab23a7b1a005f4cb52f3d08909f578fbaa09af9f9c0b7b"
dependencies = [
"icondata_core",
]
[[package]]
name = "ident_case"
version = "1.0.1"

View File

@ -22,7 +22,8 @@ leptos_icons = { version = "0.1.0", default_features = false, features = [
"BsPlayFill",
"BsPauseFill",
"BsSkipStartFill",
"BsSkipEndFill"
"BsSkipEndFill",
"RiPlayListMediaFill",
] }
dotenv = { version = "0.15.0", optional = true }
diesel = { version = "2.1.4", features = ["postgres", "r2d2"], optional = true }