dioxus/Cargo.toml

220 lines
6.8 KiB
TOML
Raw Normal View History

[workspace]
resolver = "2"
members = [
"packages/dioxus",
2024-01-16 01:14:11 +00:00
"packages/dioxus-lib",
"packages/core",
2023-06-29 00:38:08 +00:00
"packages/cli",
"packages/cli-config",
"packages/core-macro",
2024-01-16 01:14:11 +00:00
"packages/config-macro",
2023-05-13 01:55:38 +00:00
"packages/router-macro",
2023-07-08 21:24:01 +00:00
"packages/extension",
"packages/router",
"packages/html",
2023-08-11 02:59:52 +00:00
"packages/html-internal-macro",
"packages/hooks",
"packages/web",
"packages/ssr",
"packages/desktop",
"packages/mobile",
2022-02-01 20:38:48 +00:00
"packages/interpreter",
2022-03-15 05:02:44 +00:00
"packages/liveview",
"packages/autofmt",
"packages/check",
2022-04-24 06:35:52 +00:00
"packages/rsx",
2022-12-28 21:22:20 +00:00
"packages/rsx-rosetta",
2023-08-07 23:04:49 +00:00
"packages/generational-box",
2023-01-02 00:57:33 +00:00
"packages/signals",
2023-01-11 19:40:02 +00:00
"packages/hot-reload",
2023-05-02 15:15:34 +00:00
"packages/fullstack",
"packages/server-macro",
2023-05-02 15:15:34 +00:00
"packages/fullstack/examples/axum-hello-world",
"packages/fullstack/examples/axum-router",
2024-02-16 22:04:12 +00:00
"packages/fullstack/examples/axum-streaming",
2023-05-02 15:15:34 +00:00
"packages/fullstack/examples/axum-desktop",
2023-07-08 17:37:28 +00:00
"packages/fullstack/examples/axum-auth",
2023-07-06 17:52:09 +00:00
"packages/fullstack/examples/static-hydrated",
# Full project examples
"examples/tailwind",
"examples/PWA-example",
2024-01-18 20:32:01 +00:00
# "examples/openid_connect_demo",
# Playwright tests
2024-01-31 02:51:19 +00:00
"packages/playwright-tests/liveview",
"packages/playwright-tests/web",
"packages/playwright-tests/fullstack",
2022-12-01 04:54:30 +00:00
]
2024-03-12 20:39:42 +00:00
exclude = ["examples/mobile_demo", "examples/openid_connect_demo"]
[workspace.package]
version = "0.5.1"
2023-06-19 19:29:11 +00:00
# dependencies that are shared across packages
[workspace.dependencies]
2024-03-28 01:25:52 +00:00
dioxus = { path = "packages/dioxus", version = "0.5.0" }
dioxus-lib = { path = "packages/dioxus-lib", version = "0.5.0" }
dioxus-core = { path = "packages/core", version = "0.5.0" }
dioxus-core-macro = { path = "packages/core-macro", version = "0.5.0" }
dioxus-config-macro = { path = "packages/config-macro", version = "0.5.0" }
dioxus-router = { path = "packages/router", version = "0.5.0" }
dioxus-router-macro = { path = "packages/router-macro", version = "0.5.0" }
dioxus-html = { path = "packages/html", version = "0.5.0" }
dioxus-html-internal-macro = { path = "packages/html-internal-macro", version = "0.5.0" }
dioxus-hooks = { path = "packages/hooks", version = "0.5.0" }
dioxus-web = { path = "packages/web", version = "0.5.0" }
dioxus-ssr = { path = "packages/ssr", version = "0.5.0", default-features = false }
dioxus-desktop = { path = "packages/desktop", version = "0.5.0", default-features = false }
dioxus-mobile = { path = "packages/mobile", version = "0.5.0" }
dioxus-interpreter-js = { path = "packages/interpreter", version = "0.5.0" }
dioxus-liveview = { path = "packages/liveview", version = "0.5.0" }
dioxus-autofmt = { path = "packages/autofmt", version = "0.5.0" }
dioxus-check = { path = "packages/check", version = "0.5.0" }
dioxus-rsx = { path = "packages/rsx", version = "0.5.0" }
rsx-rosetta = { path = "packages/rsx-rosetta", version = "0.5.0" }
dioxus-signals = { path = "packages/signals", version = "0.5.0" }
dioxus-cli-config = { path = "packages/cli-config", version = "0.5.0", default-features = false}
generational-box = { path = "packages/generational-box", version = "0.5.0" }
dioxus-hot-reload = { path = "packages/hot-reload", version = "0.5.0" }
dioxus-fullstack = { path = "packages/fullstack", version = "0.5.0" }
dioxus_server_macro = { path = "packages/server-macro", version = "0.5.0", default-features = false }
2024-03-28 01:14:33 +00:00
dioxus-ext = { path = "packages/extension" }
2023-09-06 22:47:33 +00:00
tracing = "0.1.37"
tracing-futures = "0.2.5"
toml = "0.8"
2023-06-19 19:29:11 +00:00
tokio = "1.28"
slab = "0.4.2"
futures-channel = "0.3.21"
futures-util = { version = "0.3", default-features = false }
rustc-hash = "1.1.0"
2024-03-06 10:00:24 +00:00
wasm-bindgen = "0.2.92"
2023-07-08 21:24:01 +00:00
html_parser = "0.7.0"
thiserror = "1.0.40"
prettyplease = { version = "0.2.16", features = ["verbatim"] }
manganis-cli-support = { version = "0.2.1", features = ["html"] }
2024-03-13 19:05:42 +00:00
manganis = { version = "0.2.1" }
2024-03-27 23:57:24 +00:00
interprocess = { version = "1.2.2", package = "interprocess-docfix" }
2024-03-12 20:39:42 +00:00
lru = "0.12.2"
async-trait = "0.1.77"
axum = "0.7.0"
2024-03-12 20:39:42 +00:00
axum-server = { version = "0.6.0", default-features = false }
tower = "0.4.13"
http = "1.0.0"
tower-http = "0.5.1"
hyper = "1.0.0"
hyper-rustls = "0.26.0"
serde_json = "1.0.61"
serde = "1.0.61"
2024-03-12 20:39:42 +00:00
syn = "2.0"
quote = "1.0"
proc-macro2 = "1.0"
2024-02-16 02:59:57 +00:00
axum_session = "0.12.1"
axum_session_auth = "0.12.1"
axum-extra = "0.9.2"
2024-02-18 17:45:27 +00:00
reqwest = "0.11.24"
2024-03-12 20:39:42 +00:00
owo-colors = "4.0.0"
[workspace.dev-dependencies]
isnta = "1.36.1"
# speed up some macros by optimizing them
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3
[profile.dev.package.dioxus-core-macro]
opt-level = 3
2024-03-12 20:39:42 +00:00
# Enable a small amount of optimization in debug mode
[profile.cli-dev]
inherits = "dev"
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.cli-dev.package."*"]
opt-level = 3
2022-12-28 21:23:05 +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.5.1"
2022-12-28 21:23:05 +00:00
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"
publish = false
2024-01-18 20:32:01 +00:00
[dependencies]
2024-03-12 20:39:42 +00:00
manganis = { workspace = true, optional = true }
reqwest = { version = "0.11.9", features = ["json"], optional = true }
http-range = { version = "0.1.5", optional = true }
2024-01-18 20:32:01 +00:00
2022-12-28 21:23:05 +00:00
[dev-dependencies]
2024-02-07 17:31:13 +00:00
dioxus = { workspace = true, features = ["router"] }
2023-06-19 19:29:11 +00:00
dioxus-ssr = { workspace = true }
2022-12-28 21:23:05 +00:00
futures-util = "0.3.21"
separator = "0.4.1"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
rand = { version = "0.8.4", features = ["small_rng"] }
2024-01-20 06:27:54 +00:00
form_urlencoded = "1.2.0"
2024-01-20 00:36:40 +00:00
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
getrandom = { version = "0.2.12", features = ["js"] }
2024-03-12 20:39:42 +00:00
tokio = { version = "1.16.1", default-features = false, features = [
"sync",
"macros",
"io-util",
"rt",
2024-03-28 01:14:33 +00:00
"time"
2024-03-12 20:39:42 +00:00
] }
2024-01-20 00:36:40 +00:00
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
2022-12-28 21:23:05 +00:00
tokio = { version = "1.16.1", features = ["full"] }
2024-01-08 22:54:02 +00:00
# To make most examples faster to compile, we split out assets and http-related stuff
# This trims off like 270 dependencies, leading to a significant speedup in compilation time
2024-01-18 20:32:01 +00:00
[features]
2024-03-28 01:14:33 +00:00
default = ["dioxus/desktop"]
liveview = ["dioxus/liveview"]
fullstack = ["dioxus/fullstack"]
axum = ["dioxus/axum"]
2024-02-05 21:04:49 +00:00
server = ["dioxus/axum"]
2024-01-20 00:36:40 +00:00
web = ["dioxus/web"]
2024-01-18 20:32:01 +00:00
collect-assets = ["manganis"]
http = ["reqwest", "http-range"]
2024-03-28 01:14:33 +00:00
[[example]]
name = "login_form"
required-features = ["http"]
[[example]]
name = "dog_app"
required-features = ["http"]
[[example]]
name = "video_stream"
required-features = ["http"]
2024-01-18 20:32:01 +00:00
[[example]]
name = "suspense"
required-features = ["http"]
[[example]]
name = "weather_app"
required-features = ["http"]
[[example]]
name = "image_generator_openai"
required-features = ["http"]