123456789101112131415161718192021222324252627 |
- [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 }
- [features]
- default = ["read-config"]
- cli = ["tauri-bundler", "tauri-utils", "clap", "toml", "cargo_toml"]
- read-config = []
|