Migrate link and tag components

This commit is contained in:
Florian RICHER 2023-10-08 21:36:00 +02:00
parent 79daad993e
commit d420097a88
11 changed files with 93 additions and 54 deletions

47
Cargo.lock generated
View file

@ -1144,6 +1144,41 @@ dependencies = [
"want",
]
[[package]]
name = "icondata"
version = "0.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f41f2deec9249d16ef6b1a8442fbe16013f67053797052aa0b7d2f5ebd0f0098"
dependencies = [
"icondata_core",
"icondata_fa",
"icondata_fi",
]
[[package]]
name = "icondata_core"
version = "0.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1640a4c1d5ddd08ab1d9854ffa7a2fa3dc52339492676b6d3031e77ca579f434"
[[package]]
name = "icondata_fa"
version = "0.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a515ecda53468cf4a383409da1708da2e4c00253561873c46304cd7f412e9414"
dependencies = [
"icondata_core",
]
[[package]]
name = "icondata_fi"
version = "0.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a68806fd5abc6bcf395fc54f6193b0f9085aa2a6c740d72825e7e43be4d6a366"
dependencies = [
"icondata_core",
]
[[package]]
name = "ident_case"
version = "1.0.1"
@ -1373,6 +1408,17 @@ dependencies = [
"walkdir",
]
[[package]]
name = "leptos_icons"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b3fad7820b18b983d49ff4262df88de94dc8fd993278937979cc0dd188868e5"
dependencies = [
"icondata",
"leptos",
"tracing",
]
[[package]]
name = "leptos_integration_utils"
version = "0.5.1"
@ -1766,6 +1812,7 @@ dependencies = [
"gloo-net 0.4.0",
"leptos",
"leptos_actix",
"leptos_icons",
"leptos_meta",
"leptos_router",
"log",