Browse Source

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 months ago
parent
commit
ac8a5402f3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/fullstack-auth/Cargo.toml

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

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