fix release build

This commit is contained in:
Adrian Wannenmacher 2022-12-09 01:42:30 +01:00
parent a170aa76e0
commit ef76453422
No known key found for this signature in database
GPG key ID: 19D986ECB1E492D5
3 changed files with 9 additions and 6 deletions

View file

@ -11,6 +11,7 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
async-rwlock = "1.3.0"
dioxus = { path="../dioxus" }
dioxus-router-core = { path = "../router-core"}

View file

@ -54,11 +54,12 @@ pub fn Link<'a>(cx: Scope<'a, LinkProps<'a>>) -> Element {
let router = match use_router_internal(&cx) {
Some(r) => r,
None => {
error!("`Link` must have access to a parent router, will be inactive");
let msg = "`Link` must have access to a parent router";
error!("{msg}, will be inactive");
#[cfg(debug_assertions)]
panic!("`Link` must have access to a parent router");
panic!("{}", msg);
#[cfg(not(debug_assertions))]
return None;
anyhow::bail!("{msg}");
}
};
let state = loop {

View file

@ -18,11 +18,12 @@ pub fn Outlet(cx: Scope<OutletProps>) -> Element {
let router = match use_router_internal(&cx) {
Some(r) => r,
None => {
error!("`Outlet` must have access to a parent router, will be inactive");
let msg = "`Outlet` must have access to a parent router";
error!("{msg}, will be inactive");
#[cfg(debug_assertions)]
panic!("`Outlet` must have access to a parent router");
panic!("{}", msg);
#[cfg(not(debug_assertions))]
return None;
anyhow::bail!("{msg}");
}
};
let state = loop {