This commit is contained in:
Jeremy Wall 2022-12-31 16:42:12 -06:00
parent 5f0cfb3a29
commit dcc574ca60
2 changed files with 5 additions and 5 deletions

View File

@ -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" }
sqlx = { git = "https://github.com/zaphar/sqlx", branch = "remove_unstable_async_std_feature" }
[profile.release]
lto = true
opt-level = "s"

View File

@ -61,7 +61,3 @@ features = [
[dependencies.sycamore]
version = "0.8.2"
features = ["suspense", "serde", "default", ]
[profile.release]
lto = true
opt-level = "s"