Browse Source

publish: desktop

Jonathan Kelley 3 years ago
parent
commit
c1f8424693
2 changed files with 3 additions and 3 deletions
  1. 1 1
      Cargo.toml
  2. 2 2
      packages/desktop/Cargo.toml

+ 1 - 1
Cargo.toml

@@ -16,7 +16,7 @@ dioxus-html = { path = "./packages/html", version = "^0.1.1", optional = true }
 dioxus-core-macro = { path = "./packages/core-macro", version = "^0.1.3", optional = true }
 dioxus-hooks = { path = "./packages/hooks", optional = true }
 
-dioxus-web = { path = "./packages/web", version = "^0.0.1", optional = true }
+dioxus-web = { path = "./packages/web", version = "^0.0.2", optional = true }
 dioxus-desktop = { path = "./packages/desktop", optional = true }
 dioxus-ssr = { path = "./packages/ssr", optional = true }
 

+ 2 - 2
packages/desktop/Cargo.toml

@@ -27,8 +27,8 @@ tokio = { version = "1.12.0", features = [
     "rt",
     "time",
 ], optional = true, default-features = false }
-dioxus-core-macro = { path = "../core-macro" }
-dioxus-html = { path = "../html", features = ["serialize"] }
+dioxus-core-macro = { path = "../core-macro", version = "0.1.4" }
+dioxus-html = { path = "../html", features = ["serialize"], version = "0.1.2" }
 
 [features]
 default = ["tokio_runtime"]