mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-14 00:17:17 +00:00
9567674a63
* feat: cli settings * revision: lower msrv * add previous line about hotreload settings just in case * Fix issue with open --------- Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
32 lines
1 KiB
TOML
32 lines
1 KiB
TOML
[package]
|
|
name = "dioxus-cli-config"
|
|
version = { workspace = true }
|
|
authors = ["Jonathan Kelley"]
|
|
edition = "2021"
|
|
description = "Configuration for the Dioxus CLI"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["react", "gui", "cli", "dioxus", "wasm"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.2", features = ["derive"], optional = true }
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
serde_json = "1.0.79"
|
|
toml = { workspace = true, optional = true }
|
|
cargo_toml = { version = "0.18.0", optional = true }
|
|
once_cell = "1.18.0"
|
|
tracing = { workspace = true }
|
|
|
|
# bundling
|
|
tauri-bundler = { version = "=1.4.0", features = ["native-tls-vendored"], optional = true }
|
|
tauri-utils = { version = "=1.5.*", optional = true }
|
|
|
|
dirs = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = ["read-config"]
|
|
cli = ["dep:tauri-bundler", "dep:tauri-utils", "dep:clap", "dep:toml", "dep:cargo_toml", "dep:dirs"]
|
|
read-config = []
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|