소스 검색

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"]