mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Release dioxus-core v0.2.1, dioxus-core-macro v0.2.1, dioxus-html v0.2.1, dioxus-interpreter-js v0.2.1, dioxus-desktop v0.2.3, dioxus-hooks v0.2.1, dioxus-liveview v0.1.0, dioxus-native-core v0.2.0, dioxus-native-core-macro v0.2.0, dioxus-router v0.2.3, dioxus-ssr v0.2.1, dioxus-tui v0.2.2, dioxus-web v0.2.1, fermi v0.2.1, dioxus v0.2.4
This commit is contained in:
parent
5503aeb7a6
commit
3febd42588
16 changed files with 51 additions and 51 deletions
26
Cargo.toml
26
Cargo.toml
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "dioxus"
|
||||
version = "0.2.3"
|
||||
version = "0.2.4"
|
||||
authors = ["Jonathan Kelley"]
|
||||
edition = "2021"
|
||||
description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
|
||||
|
@ -12,19 +12,19 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|||
rust-version = "1.56.0"
|
||||
|
||||
[dependencies]
|
||||
dioxus-core = { path = "./packages/core", version = "^0.2.0" }
|
||||
dioxus-html = { path = "./packages/html", version = "^0.2.0", optional = true }
|
||||
dioxus-core-macro = { path = "./packages/core-macro", version = "^0.2.0", optional = true }
|
||||
dioxus-hooks = { path = "./packages/hooks", version = "^0.2.0", optional = true }
|
||||
fermi = { path = "./packages/fermi", version = "^0.2.0", optional = true }
|
||||
dioxus-core = { path = "./packages/core", version = "^0.2.1" }
|
||||
dioxus-html = { path = "./packages/html", version = "^0.2.1", optional = true }
|
||||
dioxus-core-macro = { path = "./packages/core-macro", version = "^0.2.1", optional = true }
|
||||
dioxus-hooks = { path = "./packages/hooks", version = "^0.2.1", optional = true }
|
||||
fermi = { path = "./packages/fermi", version = "^0.2.1", optional = true }
|
||||
|
||||
dioxus-web = { path = "./packages/web", version = "^0.2.0", optional = true }
|
||||
dioxus-desktop = { path = "./packages/desktop", version = "^0.2.2", optional = true }
|
||||
dioxus-ssr = { path = "./packages/ssr", version = "^0.2.0", optional = true }
|
||||
dioxus-web = { path = "./packages/web", version = "^0.2.1", optional = true }
|
||||
dioxus-desktop = { path = "./packages/desktop", version = "^0.2.3", optional = true }
|
||||
dioxus-ssr = { path = "./packages/ssr", version = "^0.2.1", optional = true }
|
||||
|
||||
dioxus-router = { path = "./packages/router", version = "^0.2.1", optional = true }
|
||||
dioxus-interpreter-js = { path = "./packages/interpreter", version = "^0.2.0", optional = true }
|
||||
dioxus-tui = { path = "./packages/tui", version = "^0.2.0", optional = true }
|
||||
dioxus-router = { path = "./packages/router", version = "^0.2.3", optional = true }
|
||||
dioxus-interpreter-js = { path = "./packages/interpreter", version = "^0.2.1", optional = true }
|
||||
dioxus-tui = { path = "./packages/tui", version = "^0.2.2", optional = true }
|
||||
|
||||
dioxus-liveview = { path = "./packages/liveview", optional = true }
|
||||
|
||||
|
@ -97,4 +97,4 @@ harness = false
|
|||
|
||||
[[bench]]
|
||||
name = "tui_update"
|
||||
harness = false
|
||||
harness = false
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "dioxus-core-macro"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Jonathan Kelley"]
|
||||
edition = "2021"
|
||||
description = "Core macro for Dioxus Virtual DOM"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "dioxus-core"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Jonathan Kelley"]
|
||||
edition = "2018"
|
||||
description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "dioxus-desktop"
|
||||
version = "0.2.2"
|
||||
version = "0.2.3"
|
||||
authors = ["Jonathan Kelley"]
|
||||
edition = "2018"
|
||||
description = "Dioxus VirtualDOM renderer for a remote webview instance"
|
||||
|
@ -12,9 +12,9 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
dioxus-core = { path = "../core", version = "^0.2.0", features = ["serialize"] }
|
||||
dioxus-html = { path = "../html", features = ["serialize"], version = "^0.2.0" }
|
||||
dioxus-interpreter-js = { path = "../interpreter", version = "^0.2.0" }
|
||||
dioxus-core = { path = "../core", version = "^0.2.1", features = ["serialize"] }
|
||||
dioxus-html = { path = "../html", features = ["serialize"], version = "^0.2.1" }
|
||||
dioxus-interpreter-js = { path = "../interpreter", version = "^0.2.1" }
|
||||
|
||||
serde = "1.0.136"
|
||||
serde_json = "1.0.79"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "fermi"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Jonathan Kelley"]
|
||||
edition = "2018"
|
||||
description = "Global state management for Dioxus"
|
||||
|
@ -13,7 +13,7 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
dioxus-core = { path = "../core", version = "^0.2.0" }
|
||||
dioxus-core = { path = "../core", version = "^0.2.1" }
|
||||
im-rc = { version = "15.0.0", features = ["serde"] }
|
||||
log = "0.4.14"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "dioxus-hooks"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Jonathan Kelley"]
|
||||
edition = "2018"
|
||||
description = "Dioxus VirtualDOM renderer for a remote webview instance"
|
||||
|
@ -12,11 +12,11 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
dioxus-core = { path = "../../packages/core", version = "^0.2.0" }
|
||||
dioxus-core = { path = "../../packages/core", version = "^0.2.1" }
|
||||
futures-channel = "0.3.21"
|
||||
log = { version = "0.4" }
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
futures-util = { version = "0.3", default-features = false }
|
||||
dioxus-core = { path = "../../packages/core", version = "^0.2.0" }
|
||||
dioxus-core = { path = "../../packages/core", version = "^0.2.1" }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "dioxus-html"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Jonathan Kelley"]
|
||||
edition = "2018"
|
||||
description = "HTML Element pack for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
|
||||
|
@ -11,7 +11,7 @@ documentation = "https://docs.rs/dioxus"
|
|||
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
||||
|
||||
[dependencies]
|
||||
dioxus-core = { path = "../core", version = "^0.2.0" }
|
||||
dioxus-core = { path = "../core", version = "^0.2.1" }
|
||||
serde = { version = "1", features = ["derive"], optional = true }
|
||||
serde_repr = { version = "0.1", optional = true }
|
||||
wasm-bindgen = { version = "0.2.79", optional = true }
|
||||
|
@ -38,4 +38,4 @@ features = [
|
|||
[features]
|
||||
default = []
|
||||
serialize = ["serde", "serde_repr"]
|
||||
wasm-bind = ["web-sys", "wasm-bindgen"]
|
||||
wasm-bind = ["web-sys", "wasm-bindgen"]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "dioxus-interpreter-js"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
edition = "2018"
|
||||
authors = ["Jonathan Kelley"]
|
||||
description = "JS Intepreter for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
|
||||
|
|
|
@ -23,8 +23,8 @@ serde = { version = "1.0.136", features = ["derive"] }
|
|||
serde_json = "1.0.79"
|
||||
tokio-util = { version = "0.7.0", features = ["full"] }
|
||||
|
||||
dioxus-html = { path = "../html", features = ["serialize"], version = "^0.2.0" }
|
||||
dioxus-core = { path = "../core", features = ["serialize"], version = "^0.2.0" }
|
||||
dioxus-html = { path = "../html", features = ["serialize"], version = "^0.2.1" }
|
||||
dioxus-core = { path = "../core", features = ["serialize"], version = "^0.2.1" }
|
||||
|
||||
|
||||
# warp
|
||||
|
|
|
@ -12,7 +12,7 @@ license = "MIT/Apache-2.0"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
dioxus-desktop = { path = "../desktop", version = "^0.2.0" }
|
||||
dioxus-desktop = { path = "../desktop", version = "^0.2.3" }
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
|
|
|
@ -13,10 +13,10 @@ quote = "1.0"
|
|||
dioxus-native-core = { path = "../native-core" }
|
||||
|
||||
[dev-dependencies]
|
||||
dioxus-core = { path = "../core", version = "^0.2.0" }
|
||||
dioxus-html = { path = "../html", version = "^0.2.0" }
|
||||
dioxus-core-macro = { path = "../core-macro", version = "^0.2.0" }
|
||||
dioxus-core = { path = "../core", version = "^0.2.1" }
|
||||
dioxus-html = { path = "../html", version = "^0.2.1" }
|
||||
dioxus-core-macro = { path = "../core-macro", version = "^0.2.1" }
|
||||
|
||||
smallvec = "1.6"
|
||||
fxhash = "0.2"
|
||||
anymap = "0.12.1"
|
||||
anymap = "0.12.1"
|
||||
|
|
|
@ -7,9 +7,9 @@ repository = "https://github.com/DioxusLabs/dioxus/"
|
|||
homepage = "https://dioxuslabs.com"
|
||||
|
||||
[dependencies]
|
||||
dioxus-core = { path = "../core", version = "^0.2.0" }
|
||||
dioxus-html = { path = "../html", version = "^0.2.0" }
|
||||
dioxus-core-macro = { path = "../core-macro", version = "^0.2.0" }
|
||||
dioxus-core = { path = "../core", version = "^0.2.1" }
|
||||
dioxus-html = { path = "../html", version = "^0.2.1" }
|
||||
dioxus-core-macro = { path = "../core-macro", version = "^0.2.1" }
|
||||
|
||||
stretch2 = "0.4.2"
|
||||
smallvec = "1.6"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "dioxus-router"
|
||||
version = "0.2.2"
|
||||
version = "0.2.3"
|
||||
edition = "2018"
|
||||
description = "Cross-platform router for Dioxus apps"
|
||||
license = "MIT/Apache-2.0"
|
||||
|
@ -11,9 +11,9 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
dioxus-core = { path = "../core", version = "^0.2.0", default-features = false }
|
||||
dioxus-html = { path = "../html", version = "^0.2.0", default-features = false }
|
||||
dioxus-core-macro = { path = "../core-macro", version = "^0.2.0" }
|
||||
dioxus-core = { path = "../core", version = "^0.2.1", default-features = false }
|
||||
dioxus-html = { path = "../html", version = "^0.2.1", default-features = false }
|
||||
dioxus-core-macro = { path = "../core-macro", version = "^0.2.1" }
|
||||
futures-channel = "0.3.21"
|
||||
url = { version = "2.2.2", default-features = false }
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "dioxus-ssr"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Jonathan Kelley"]
|
||||
edition = "2018"
|
||||
description = "Dioxus render-to-string"
|
||||
|
@ -13,7 +13,7 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
dioxus-core = { path = "../core", version = "^0.2.0", features = ["serialize"] }
|
||||
dioxus-core = { path = "../core", version = "^0.2.1", features = ["serialize"] }
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "dioxus-tui"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["Jonathan Kelley, @dementhos"]
|
||||
edition = "2021"
|
||||
description = "TUI-based renderer for Dioxus"
|
||||
|
@ -13,8 +13,8 @@ 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.2.0" }
|
||||
dioxus-html = { path = "../html", version = "^0.2.0" }
|
||||
dioxus-core = { path = "../core", version = "^0.2.1" }
|
||||
dioxus-html = { path = "../html", version = "^0.2.1" }
|
||||
dioxus-native-core = { path = "../native-core", version = "^0.2.0" }
|
||||
dioxus-native-core-macro = { path = "../native-core-macro", version = "^0.2.0" }
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "dioxus-web"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
authors = ["Jonathan Kelley"]
|
||||
edition = "2018"
|
||||
description = "Dioxus VirtualDOM renderer for the web browser using websys"
|
||||
|
@ -11,9 +11,9 @@ documentation = "https://dioxuslabs.com"
|
|||
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
||||
|
||||
[dependencies]
|
||||
dioxus-core = { path = "../core", version = "^0.2.0" }
|
||||
dioxus-html = { path = "../html", version = "^0.2.0", features = ["wasm-bind"] }
|
||||
dioxus-interpreter-js = { path = "../interpreter", version = "^0.2.0", features = [
|
||||
dioxus-core = { path = "../core", version = "^0.2.1" }
|
||||
dioxus-html = { path = "../html", version = "^0.2.1", features = ["wasm-bind"] }
|
||||
dioxus-interpreter-js = { path = "../interpreter", version = "^0.2.1", features = [
|
||||
"web",
|
||||
] }
|
||||
|
||||
|
|
Loading…
Reference in a new issue