2021-12-18 20:17:32 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2022-07-09 19:15:20 +00:00
|
|
|
"packages/dioxus",
|
2021-12-18 20:17:32 +00:00
|
|
|
"packages/core",
|
|
|
|
"packages/core-macro",
|
2022-07-09 19:15:20 +00:00
|
|
|
"packages/router",
|
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",
|
2022-03-15 05:02:44 +00:00
|
|
|
"packages/liveview",
|
2022-06-24 18:22:08 +00:00
|
|
|
"packages/autofmt",
|
2022-04-24 06:35:52 +00:00
|
|
|
"packages/rsx",
|
2022-12-01 04:54:30 +00:00
|
|
|
"docs/guide",
|
|
|
|
"packages/tui",
|
|
|
|
"packages/native-core",
|
|
|
|
"packages/native-core-macro",
|
|
|
|
]
|
2022-07-09 19:15:20 +00:00
|
|
|
|
|
|
|
# This is a "virtual package"
|
|
|
|
# It is not meant to be published, but is used so "cargo run --example XYZ" works properly
|
|
|
|
[package]
|
|
|
|
name = "dioxus-examples"
|
|
|
|
version = "0.0.0"
|
|
|
|
authors = ["Jonathan Kelley"]
|
|
|
|
edition = "2021"
|
|
|
|
description = "Top level crate for the Dioxus repository"
|
|
|
|
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.60.0"
|
|
|
|
|
|
|
|
|
2021-06-17 03:37:55 +00:00
|
|
|
[dev-dependencies]
|
2022-07-09 19:15:20 +00:00
|
|
|
dioxus = { path = "./packages/dioxus" }
|
2022-10-20 16:56:09 +00:00
|
|
|
dioxus-desktop = { path = "./packages/desktop" }
|
2022-07-09 19:15:20 +00:00
|
|
|
dioxus-ssr = { path = "./packages/ssr" }
|
|
|
|
dioxus-router = { path = "./packages/router" }
|
|
|
|
fermi = { path = "./packages/fermi" }
|
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-03-03 03:48:22 +00:00
|
|
|
fern = { version = "0.6.0", features = ["colored"] }
|
|
|
|
thiserror = "1.0.30"
|
2022-03-04 18:08:25 +00:00
|
|
|
env_logger = "0.9.0"
|
2022-09-30 19:03:06 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
lto = true
|
2022-10-20 16:56:09 +00:00
|
|
|
debug = true
|