Browse Source

Quiet cargo warnings

Jonathan Kelley 1 year ago
parent
commit
5e3451a6f2

+ 0 - 7
packages/fullstack/examples/axum-auth/Cargo.toml

@@ -44,10 +44,3 @@ optional = true
 default = []
 ssr = ["axum", "tokio", "dioxus-fullstack/axum", "tower-http", "simple_logger", "async-trait", "sqlx", "axum_session", "axum_session_auth", "http", "tower"]
 web = ["dioxus-web"]
-
-[profile.release]
-lto = true
-panic = "abort"
-opt-level = 'z'
-strip = true
-codegen-units = 1

+ 0 - 7
packages/fullstack/examples/axum-hello-world/Cargo.toml

@@ -24,10 +24,3 @@ reqwest = "0.11.18"
 default = []
 ssr = ["axum", "tokio", "dioxus-fullstack/axum"]
 web = ["dioxus-web"]
-
-[profile.release]
-lto = true
-panic = "abort"
-opt-level = 'z'
-strip = true
-codegen-units = 1

+ 1 - 1
packages/router/Cargo.toml

@@ -38,7 +38,7 @@ web = ["gloo", "web-sys", "wasm-bindgen", "gloo-utils", "js-sys"]
 [dev-dependencies]
 dioxus = { path = "../dioxus" }
 dioxus-ssr = { path = "../ssr" }
-criterion = { verison = "0.5", features = ["async_tokio", "html_reports"] }
+criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
 
 [[example]]
 name = "static_generation"