mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
26 lines
844 B
TOML
26 lines
844 B
TOML
[package]
|
|
name = "dioxus-cli-config"
|
|
version = "0.4.1"
|
|
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 = { version = "0.5.8", optional = true }
|
|
cargo_toml = { version = "0.16.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 }
|
|
|
|
[features]
|
|
default = []
|
|
cli = ["tauri-bundler", "tauri-utils", "clap", "toml", "cargo_toml"]
|