fix workspace build

This commit is contained in:
Evan Almloff 2023-03-30 10:38:32 -05:00
parent fdc8ebd1b1
commit 1d395d572f
4 changed files with 3 additions and 7 deletions

View file

@ -22,6 +22,8 @@ members = [
"packages/signals",
"packages/hot-reload",
"packages/server",
"packages/server/server-macro",
"packages/server/examples/hello-world",
"docs/guide",
]

View file

@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
server_fn = { version = "0.2.4", features = ["stable"] }
server_macro = { path = "server_macro" }
server_macro = { path = "server-macro" }
# warp
warp = { version = "0.3.3", optional = true }
@ -35,9 +35,3 @@ warp = ["dep:warp"]
axum = ["dep:axum", "tower-http", "hyper"]
salvo = ["dep:salvo"]
ssr = ["server_fn/ssr", "tokio", "dioxus-ssr"]
[workspace]
members = [
"server_macro",
"examples/hello-world",
]