Cargo.toml 892 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "dioxus-cli-config"
  3. version = { workspace = true }
  4. authors = ["Jonathan Kelley"]
  5. edition = "2021"
  6. description = "Configuration for the Dioxus CLI"
  7. repository = "https://github.com/DioxusLabs/dioxus/"
  8. license = "MIT OR Apache-2.0"
  9. keywords = ["react", "gui", "cli", "dioxus", "wasm"]
  10. [dependencies]
  11. clap = { version = "4.2", features = ["derive"], optional = true }
  12. serde = { version = "1.0.136", features = ["derive"] }
  13. serde_json = "1.0.79"
  14. toml = { workspace = true, optional = true }
  15. cargo_toml = { version = "0.18.0", optional = true }
  16. once_cell = "1.18.0"
  17. tracing = { workspace = true }
  18. # bundling
  19. tauri-bundler = { version = "=1.4.0", features = ["native-tls-vendored"], optional = true }
  20. tauri-utils = { version = "=1.5.*", optional = true }
  21. [features]
  22. default = ["read-config"]
  23. cli = ["tauri-bundler", "tauri-utils", "clap", "toml", "cargo_toml"]
  24. read-config = []