Cargo.toml 518 B

1234567891011121314151617
  1. [package]
  2. name = "dioxus-dx-wire-format"
  3. edition = "2021"
  4. version.workspace = true
  5. publish = true
  6. authors = ["Jonathan Kelley"]
  7. description = "Wire format for the Dioxus CLI"
  8. license = "MIT OR Apache-2.0"
  9. repository = "https://github.com/DioxusLabs/dioxus/"
  10. homepage = "https://dioxuslabs.com/learn/0.6/"
  11. keywords = ["dom", "ui", "gui", "react", "wasm"]
  12. rust-version = "1.79.0"
  13. [dependencies]
  14. serde = { workspace = true, features = ["derive"] }
  15. serde_json = { workspace = true }
  16. cargo_metadata = { workspace = true }