Add log crate

This commit is contained in:
Ethan Girouard 2024-04-11 23:06:04 -04:00
parent eeeae822a5
commit 7062c75013
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146
2 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View File

@ -1510,6 +1510,7 @@ dependencies = [
"leptos_icons", "leptos_icons",
"leptos_meta", "leptos_meta",
"leptos_router", "leptos_router",
"log",
"openssl", "openssl",
"pbkdf2", "pbkdf2",
"serde", "serde",

View File

@ -36,6 +36,7 @@ tower-sessions = { version = "0.11", default-features = false }
tower-sessions-redis-store = { version = "0.11", optional = true } tower-sessions-redis-store = { version = "0.11", optional = true }
async-trait = "0.1.79" async-trait = "0.1.79"
axum-login = { version = "0.14.0", optional = true } axum-login = { version = "0.14.0", optional = true }
log = { version = "0.4.21", optional = true }
[patch.crates-io] [patch.crates-io]
gloo-net = { git = "https://github.com/rustwasm/gloo.git", rev = "a823fab7ecc4068e9a28bd669da5eaf3f0a56380" } gloo-net = { git = "https://github.com/rustwasm/gloo.git", rev = "a823fab7ecc4068e9a28bd669da5eaf3f0a56380" }
@ -61,6 +62,7 @@ ssr = [
"tower-http", "tower-http",
"tower-sessions-redis-store", "tower-sessions-redis-store",
"axum-login", "axum-login",
"log",
] ]
# Defines a size-optimized profile for the WASM bundle in release mode # Defines a size-optimized profile for the WASM bundle in release mode