mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 04:33:06 +00:00
c4e55c7fb6
* Fix: bump msrv up to be valid for cli * add binstall check to ci * adjust msrv of tomls
33 lines
1.2 KiB
TOML
33 lines
1.2 KiB
TOML
[package]
|
|
name = "dioxus-lib"
|
|
version = { workspace = true }
|
|
authors = ["Jonathan Kelley", "Dioxus Labs", "ealmloff"]
|
|
edition = "2021"
|
|
description = "Portable, performant, and ergonomic framework for building cross-platform user interfaces in Rust"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com/learn/0.5/"
|
|
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|
rust-version = "1.79.0"
|
|
|
|
[dependencies]
|
|
dioxus-core = { workspace = true }
|
|
dioxus-html = { workspace = true, optional = true }
|
|
dioxus-core-macro = { workspace = true, optional = true }
|
|
dioxus-config-macro = { workspace = true, optional = true }
|
|
dioxus-hooks = { workspace = true, optional = true }
|
|
dioxus-rsx = { workspace = true, optional = true }
|
|
dioxus-signals = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
dioxus = { workspace = true }
|
|
|
|
[features]
|
|
default = ["macro", "html", "signals", "hooks"]
|
|
signals = ["dep:dioxus-signals"]
|
|
macro = ["dep:dioxus-core-macro", "dep:dioxus-rsx", "dep:dioxus-config-macro"]
|
|
html = ["dep:dioxus-html"]
|
|
hooks = ["dep:dioxus-hooks"]
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|