From dcc574ca60a96d50c7fca8405524f0619144b947 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Sat, 31 Dec 2022 16:42:12 -0600 Subject: [PATCH] --- Cargo.toml | 6 +++++- web/Cargo.toml | 4 ---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 073a4b3..33fc471 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,4 +7,8 @@ sycamore = { git = "https://github.com/sycamore-rs/sycamore/", rev = "5d49777b4a sycamore-router = { git = "https://github.com/sycamore-rs/sycamore/", rev = "5d49777b4a66fb5730c40898fd2ee8cde15bcdc3" } # NOTE(jwall): We are maintaining a patch to remove the unstable async_std_feature. It breaks in our project on # Rust v1.64 -sqlx = { git = "https://github.com/zaphar/sqlx", branch = "remove_unstable_async_std_feature" } \ No newline at end of file +sqlx = { git = "https://github.com/zaphar/sqlx", branch = "remove_unstable_async_std_feature" } + +[profile.release] +lto = true +opt-level = "s" diff --git a/web/Cargo.toml b/web/Cargo.toml index 40e71ef..def242b 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -61,7 +61,3 @@ features = [ [dependencies.sycamore] version = "0.8.2" features = ["suspense", "serde", "default", ] - -[profile.release] -lto = true -opt-level = "s"