mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
7f6f0de085
* fix: template names * fix: hot reload "resets" after reload * revision: ensure all paths are split by `/` --------- Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
51 lines
1.4 KiB
TOML
51 lines
1.4 KiB
TOML
[package]
|
|
name = "dioxus-core"
|
|
version = { workspace = true }
|
|
authors = ["Jonathan Kelley"]
|
|
edition = "2021"
|
|
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"
|
|
keywords = ["dom", "ui", "gui", "react"]
|
|
|
|
[dependencies]
|
|
rustc-hash = { workspace = true }
|
|
longest-increasing-subsequence = "0.1.0"
|
|
futures-util = { workspace = true, default-features = false, features = [
|
|
"alloc",
|
|
"std",
|
|
] }
|
|
slab = { workspace = true }
|
|
slotmap = { workspace = true }
|
|
futures-channel = { workspace = true }
|
|
tracing = { workspace = true }
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
generational-box = { workspace = true }
|
|
rustversion = "1.0.17"
|
|
const_format = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tracing-fluent-assertions = "0.3.0"
|
|
dioxus = { workspace = true }
|
|
dioxus-html = { workspace = true, features = ["serialize"] }
|
|
pretty_assertions = "1.3.0"
|
|
rand = "0.8.5"
|
|
dioxus-ssr = { workspace = true }
|
|
reqwest = { workspace = true}
|
|
tracing-subscriber = "0.3.18"
|
|
|
|
[dev-dependencies.web-sys]
|
|
version = "0.3.56"
|
|
features = [
|
|
"Document",
|
|
"HtmlElement",
|
|
"Window"
|
|
]
|
|
|
|
[features]
|
|
serialize = ["dep:serde"]
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|