dioxus/Cargo.toml

72 lines
2.5 KiB
TOML
Raw Normal View History

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"]
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]
2022-01-29 15:42:38 +00:00
dioxus-core = { path = "./packages/core", version = "^0.1.9" }
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 }
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]
default = ["macro", "hooks", "html"]
2022-02-22 21:34:06 +00:00
macro = ["dioxus-core-macro"]
# macro = ["dioxus-core-macro", "dioxus-rsx"]
hooks = ["dioxus-hooks"]
html = ["dioxus-html"]
2021-07-15 22:40:12 +00:00
ssr = ["dioxus-ssr"]
2022-01-03 07:20:11 +00:00
web = ["dioxus-web"]
desktop = ["dioxus-desktop"]
ayatana = ["dioxus-desktop/ayatana"]
router = ["dioxus-router"]
2021-12-30 02:28:28 +00:00
[workspace]
members = [
"packages/core",
"packages/core-macro",
2022-01-18 04:02:36 +00:00
"packages/rsx",
"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-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-02-17 15:38:51 +00:00
dioxus = { path = ".", features = ["desktop", "ssr", "router", "fermi"] }