Pārlūkot izejas kodu

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 mēneši atpakaļ
vecāks
revīzija
ac8a5402f3
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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"]