mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
36 lines
1 KiB
TOML
36 lines
1 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 }
|
|
futures-channel = { workspace = true }
|
|
tracing = { workspace = true }
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
tracing-subscriber = "0.3.18"
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tracing-fluent-assertions = "0.3.0"
|
|
dioxus = { workspace = true }
|
|
pretty_assertions = "1.3.0"
|
|
rand = "0.8.5"
|
|
dioxus-ssr = { workspace = true }
|
|
reqwest.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
serialize = ["serde"]
|