浏览代码

Add missing optional dependency to web feature (#3805)

The 'web' feature in Cargo.toml listed `dioxus-web` as a dependency but
it also needed to have `dioxus/web` in order to compile properly.
damccull 4 月之前
父节点
当前提交
ac8a5402f3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/fullstack-auth/Cargo.toml

+ 1 - 1
examples/fullstack-auth/Cargo.toml

@@ -57,4 +57,4 @@ server = [
     "http",
     "tower",
 ]
-web = ["dioxus-web"]
+web = ["dioxus/web", "dioxus-web"]