dioxus/Cargo.toml

96 lines
3 KiB
TOML
Raw Normal View History

2021-06-16 15:19:37 +00:00
[package]
name = "dioxus"
version = "0.2.3"
2021-12-15 21:04:27 +00:00
authors = ["Jonathan Kelley"]
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"
license = "MIT OR Apache-2.0"
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
documentation = "https://dioxuslabs.com"
keywords = ["dom", "ui", "gui", "react", "wasm"]
rust-version = "1.56.0"
2021-06-16 15:19:37 +00:00
[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-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 }
2021-12-30 02:28:28 +00:00
2022-03-09 22:53:02 +00:00
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 }
2022-03-09 18:30:44 +00:00
2022-03-15 05:57:40 +00:00
dioxus-liveview = { path = "./packages/liveview", optional = true }
2022-04-24 06:35:52 +00:00
dioxus-rsx = { path = "./packages/rsx", optional = true }
2022-05-25 13:58:59 +00:00
dioxus-rsx-interperter = { path = "./packages/rsx_interperter", optional = true }
2021-06-16 15:19:37 +00:00
[features]
default = ["macro", "hooks", "html"]
2022-04-24 06:35:52 +00:00
macro = ["dioxus-core-macro", "dioxus-rsx"]
hooks = ["dioxus-hooks"]
html = ["dioxus-html"]
2021-07-15 22:40:12 +00:00
ssr = ["dioxus-ssr"]
web = ["dioxus-web", "dioxus-router/web"]
2022-01-03 07:20:11 +00:00
desktop = ["dioxus-desktop"]
ayatana = ["dioxus-desktop/ayatana"]
router = ["dioxus-router"]
2022-03-09 18:30:44 +00:00
tui = ["dioxus-tui"]
2022-03-15 05:57:40 +00:00
liveview = ["dioxus-liveview"]
2022-05-25 16:20:07 +00:00
hot_reload = ["dioxus-core-macro/hot_reload", "dioxus-rsx-interperter"]
2021-12-30 02:28:28 +00:00
[workspace]
members = [
"packages/core",
"packages/core-macro",
"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",
2022-03-15 05:02:44 +00:00
"packages/tui",
"packages/liveview",
2022-04-24 06:35:52 +00:00
"packages/rsx",
2022-05-25 13:58:59 +00:00
"packages/rsx_interperter",
]
2021-06-17 03:37:55 +00:00
[dev-dependencies]
futures-util = "0.3.21"
log = "0.4.14"
num-format = "0.4.0"
separator = "0.4.1"
serde = { version = "1.0.136", features = ["derive"] }
im-rc = "15.0.0"
anyhow = "1.0.53"
serde_json = "1.0.79"
rand = { version = "0.8.4", features = ["small_rng"] }
tokio = { version = "1.16.1", features = ["full"] }
reqwest = { version = "0.11.9", features = ["json"] }
2022-05-27 22:54:36 +00:00
dioxus = { path = ".", features = ["desktop", "ssr", "router", "fermi", "tui"] }
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-05-25 16:20:07 +00:00
[[bench]]
name = "create"
harness = false
[[bench]]
name = "jsframework"
harness = false
2022-04-21 02:44:37 +00:00
[[bench]]
name = "tui_update"
2022-04-24 06:35:52 +00:00
harness = false