Explorar o código

Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0

Jonathan Kelley %!s(int64=3) %!d(string=hai) anos
pai
achega
270dfc9

+ 1 - 1
Cargo.toml

@@ -8,7 +8,7 @@ description = "Core functionality for Dioxus - a concurrent renderer-agnostic Vi
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "./packages/core", version = "0.1.3" }
+dioxus-core = { path = "./packages/core", version ="^0.1.3"}
 dioxus-router = { path = "./packages/router", optional = true }
 dioxus-core-macro = { path = "./packages/core-macro", optional = true }
 dioxus-html = { path = "./packages/html", optional = true }

+ 1 - 1
packages/core/Cargo.toml

@@ -47,7 +47,7 @@ dioxus-html = { path = "../html" }
 fern = { version = "0.6.0", features = ["colored"] }
 rand = { version = "0.8.4", features = ["small_rng"] }
 simple_logger = "1.13.0"
-dioxus-core-macro = { path = "../core-macro", version = "0.1.2" }
+dioxus-core-macro = { path = "../core-macro", version ="^0.1.2"}
 # dioxus-hooks = { path = "../hooks" }
 criterion = "0.3.5"
 

+ 1 - 1
packages/desktop/Cargo.toml

@@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "../core", version = "0.1.2", features = ["serialize"] }
+dioxus-core = { path = "../core", version ="^0.1.3", features = ["serialize"] }
 argh = "0.1.4"
 serde = "1.0.120"
 serde_json = "1.0.61"

+ 1 - 1
packages/html/Cargo.toml

@@ -9,7 +9,7 @@ description = "HTML Element pack for Dioxus - a concurrent renderer-agnostic Vir
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "../core", version = "0.1.3" }
+dioxus-core = { path = "../core", version ="^0.1.3"}
 # Serialize the Edits for use in Webview/Liveview instances
 serde = { version = "1", features = ["derive"], optional = true }
 serde_repr = { version = "0.1.7", optional = true }

+ 1 - 1
packages/mobile/Cargo.toml

@@ -9,7 +9,7 @@ edition = "2018"
 [dependencies]
 anyhow = "1.0"
 # cacao = { git = "https://github.com/ryanmcgrath/cacao" }
-dioxus-core = { path = "../core", version = "0.1.2" }
+dioxus-core = { path = "../core", version ="^0.1.3"}
 log = "0.4.14"
 serde = "1.0.126"
 serde_json = "1.0.64"

+ 3 - 3
packages/router/Cargo.toml

@@ -6,9 +6,9 @@ edition = "2018"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "../core", version = "0.1", default-features = false }
-dioxus-html = { path = "../html", version = "0.1", default-features = false }
-dioxus-core-macro = { path = "../core-macro", version = "0.1" }
+dioxus-core = { path = "../core", version ="^0.1.3", default-features = false }
+dioxus-html = { path = "../html", version ="^0.1.0", default-features = false }
+dioxus-core-macro = { path = "../core-macro", version ="^0.1.2"}
 
 web-sys = { version = "0.3", features = [
     "Attr",

+ 1 - 1
packages/ssr/Cargo.toml

@@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "../core", version = "0.1.3", features = ["serialize"] }
+dioxus-core = { path = "../core", version ="^0.1.3", features = ["serialize"] }
 
 
 [dev-dependencies]

+ 1 - 1
packages/web/Cargo.toml

@@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "../core", version = "0.1.2" }
+dioxus-core = { path = "../core", version ="^0.1.3"}
 dioxus-html = { path = "../html" }
 js-sys = "0.3"
 # wasm-bindgen-shared = { path = "../../../Tinkering/wasm-bindgen/crates/shared" }