2021-06-16 15:19:37 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus"
|
2022-01-29 15:48:41 +00:00
|
|
|
version = "0.1.8"
|
2021-12-15 21:04:27 +00:00
|
|
|
authors = ["Jonathan Kelley"]
|
2022-02-19 04:33:48 +00:00
|
|
|
edition = "2021"
|
2021-06-16 15:19:37 +00:00
|
|
|
description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
|
2022-01-30 17:44:56 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-18 20:17:32 +00:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
|
|
|
documentation = "https://dioxuslabs.com"
|
|
|
|
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
2022-02-19 04:33:48 +00:00
|
|
|
rust-version = "1.56.0"
|
2021-06-16 15:19:37 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-01-29 15:42:38 +00:00
|
|
|
dioxus-core = { path = "./packages/core", version = "^0.1.9" }
|
2022-01-29 15:42:52 +00:00
|
|
|
dioxus-html = { path = "./packages/html", version = "^0.1.6", optional = true }
|
2022-01-29 15:35:54 +00:00
|
|
|
dioxus-core-macro = { path = "./packages/core-macro", version = "^0.1.7", optional = true }
|
2022-01-29 15:37:03 +00:00
|
|
|
dioxus-hooks = { path = "./packages/hooks", version = "^0.1.7", optional = true }
|
2022-02-17 15:38:51 +00:00
|
|
|
fermi = { path = "./packages/fermi", version = "^0.1.0", optional = true }
|
2022-02-22 21:34:06 +00:00
|
|
|
# dioxus-rsx = { path = "./packages/rsx", optional = true }
|
2021-12-18 20:17:32 +00:00
|
|
|
|
2022-01-29 15:37:50 +00:00
|
|
|
dioxus-web = { path = "./packages/web", version = "^0.0.5", optional = true }
|
2022-01-29 15:43:43 +00:00
|
|
|
dioxus-desktop = { path = "./packages/desktop", version = "^0.1.6", optional = true }
|
2022-01-29 15:37:34 +00:00
|
|
|
dioxus-ssr = { path = "./packages/ssr", version = "^0.1.3", optional = true }
|
2021-12-30 02:28:28 +00:00
|
|
|
|
2022-01-29 15:40:03 +00:00
|
|
|
dioxus-router = { path = "./packages/router", version = "^0.1.1", optional = true }
|
2022-01-08 07:32:26 +00:00
|
|
|
dioxus-mobile = { path = "./packages/mobile", version = "^0.0.3", optional = true }
|
2022-02-01 20:38:48 +00:00
|
|
|
dioxus-interpreter-js = { path = "./packages/interpreter", version = "^0.0.0", optional = true }
|
2021-12-30 02:28:28 +00:00
|
|
|
# dioxus-liveview = { path = "./packages/liveview", optional = true }
|
2021-06-16 15:19:37 +00:00
|
|
|
|
|
|
|
[features]
|
2021-12-18 20:17:32 +00:00
|
|
|
default = ["macro", "hooks", "html"]
|
|
|
|
|
2022-02-22 21:34:06 +00:00
|
|
|
# macro = ["dioxus-core-macro", "dioxus-rsx"]
|
2022-03-04 19:34:25 +00:00
|
|
|
macro = ["dioxus-core-macro"]
|
2021-07-11 18:49:52 +00:00
|
|
|
hooks = ["dioxus-hooks"]
|
2021-07-07 22:17:00 +00:00
|
|
|
html = ["dioxus-html"]
|
2021-07-15 22:40:12 +00:00
|
|
|
ssr = ["dioxus-ssr"]
|
2022-03-04 19:34:25 +00:00
|
|
|
web = ["dioxus-web", "dioxus-router/web"]
|
2022-01-03 07:20:11 +00:00
|
|
|
desktop = ["dioxus-desktop"]
|
2022-02-24 13:32:43 +00:00
|
|
|
ayatana = ["dioxus-desktop/ayatana"]
|
2022-01-05 05:27:22 +00:00
|
|
|
router = ["dioxus-router"]
|
2021-12-30 02:28:28 +00:00
|
|
|
|
2021-12-18 20:17:32 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"packages/core",
|
|
|
|
"packages/core-macro",
|
2022-01-18 04:02:36 +00:00
|
|
|
"packages/rsx",
|
2021-12-18 20:17:32 +00:00
|
|
|
"packages/html",
|
|
|
|
"packages/hooks",
|
|
|
|
"packages/web",
|
|
|
|
"packages/ssr",
|
|
|
|
"packages/desktop",
|
|
|
|
"packages/mobile",
|
2022-02-01 20:38:48 +00:00
|
|
|
"packages/interpreter",
|
2022-02-17 15:38:51 +00:00
|
|
|
"packages/fermi",
|
2021-12-18 20:17:32 +00:00
|
|
|
]
|
|
|
|
|
2021-06-17 03:37:55 +00:00
|
|
|
[dev-dependencies]
|
2022-02-13 17:59:15 +00:00
|
|
|
futures-util = "0.3.21"
|
2021-07-14 06:04:19 +00:00
|
|
|
log = "0.4.14"
|
|
|
|
num-format = "0.4.0"
|
|
|
|
separator = "0.4.1"
|
2022-02-13 17:59:15 +00:00
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
2021-07-29 01:46:53 +00:00
|
|
|
im-rc = "15.0.0"
|
2022-02-13 17:59:15 +00:00
|
|
|
anyhow = "1.0.53"
|
|
|
|
serde_json = "1.0.79"
|
2021-08-25 14:49:18 +00:00
|
|
|
rand = { version = "0.8.4", features = ["small_rng"] }
|
2022-02-13 17:59:15 +00:00
|
|
|
tokio = { version = "1.16.1", features = ["full"] }
|
|
|
|
reqwest = { version = "0.11.9", features = ["json"] }
|
2022-02-17 15:38:51 +00:00
|
|
|
dioxus = { path = ".", features = ["desktop", "ssr", "router", "fermi"] }
|
2022-03-03 03:48:22 +00:00
|
|
|
fern = { version = "0.6.0", features = ["colored"] }
|
|
|
|
criterion = "0.3.5"
|
|
|
|
thiserror = "1.0.30"
|
2022-03-04 18:08:25 +00:00
|
|
|
env_logger = "0.9.0"
|
2022-03-03 03:48:22 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "create"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "jsframework"
|
|
|
|
harness = false
|