2021-06-16 15:19:37 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
|
|
|
|
"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="./packages/core", version="0.1.0" }
|
|
|
|
dioxus-core-macro = { path="./packages/core-macro", version="0.1.0" }
|
|
|
|
dioxus-hooks = { path="./packages/hooks", version="0.0.0" }
|
|
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["ssr", "hooks", "router", "web", "core", "atoms"]
|
|
|
|
atoms = []
|
|
|
|
core = []
|
|
|
|
ssr = []
|
|
|
|
hooks = []
|
|
|
|
router = []
|
|
|
|
web = []
|
|
|
|
desktop = []
|
|
|
|
|
2021-01-14 07:56:41 +00:00
|
|
|
[workspace]
|
2021-05-15 16:03:08 +00:00
|
|
|
# members = ["packages/core-macro"]
|
2021-01-14 07:56:41 +00:00
|
|
|
members = [
|
2021-01-20 17:04:27 +00:00
|
|
|
"packages/core-macro",
|
2021-03-02 05:14:28 +00:00
|
|
|
"packages/core",
|
2021-03-11 17:27:01 +00:00
|
|
|
"packages/web",
|
2021-05-27 21:57:59 +00:00
|
|
|
"packages/ssr",
|
2021-06-15 14:02:46 +00:00
|
|
|
"packages/docsite",
|
2021-06-16 15:19:37 +00:00
|
|
|
"packages/atoms",
|
2021-06-15 14:02:46 +00:00
|
|
|
"packages/router",
|
2021-05-31 22:55:56 +00:00
|
|
|
]
|
2021-06-08 18:00:29 +00:00
|
|
|
# "packages/webview",
|
2021-05-15 16:03:08 +00:00
|
|
|
|
|
|
|
# "packages/cli",
|
|
|
|
# "packages/webview",
|
|
|
|
# "packages/hooks",
|
|
|
|
# "packages/ios",
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
split-debuginfo = "unpacked"
|
|
|
|
|
2021-03-29 16:31:47 +00:00
|
|
|
# "packages/liveview",
|
|
|
|
# "packages/3d",
|
2021-03-16 15:03:59 +00:00
|
|
|
|
2021-03-18 22:54:26 +00:00
|
|
|
# Built-in
|
|
|
|
# "packages/webview/client",
|
|
|
|
# "packages/router",
|
|
|
|
# "packages/webview",
|
|
|
|
# "packages/livehost",
|
|
|
|
# "packages/vscode-ext",
|
|
|
|
# "packages/recoil",
|
|
|
|
# "packages/redux",
|
|
|
|
# "packages/macro",
|
|
|
|
# TODO @Jon, share the validation code
|
|
|
|
# "packages/web",
|
|
|
|
# "packages/cli",
|
|
|
|
# "examples",
|
|
|
|
# "packages/html-macro",
|