mirror of
https://github.com/zaphar/kitchen.git
synced 2025-07-21 19:29:49 -04:00
16 lines
682 B
TOML
16 lines
682 B
TOML
[workspace]
|
|
members = [ "recipes", "kitchen", "web", "api" ]
|
|
resolver = "2"
|
|
|
|
[patch.crates-io]
|
|
# TODO(jwall): When the fix for RcSignal Binding is released we can drop this patch.
|
|
sycamore = { git = "https://github.com/sycamore-rs/sycamore/", rev = "5d49777b4a66fb5730c40898fd2ee8cde15bcdc3" }
|
|
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" }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = "s"
|