Cargo.toml 540 B

1234567891011121314151617
  1. [package]
  2. name = "manganis-core"
  3. edition = "2021"
  4. version = { workspace = true }
  5. authors = ["Jonathan Kelley"]
  6. description = "core for manganis"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. keywords = ["dom", "ui", "gui", "assets"]
  11. # be careful with dependencies you add here - these need to get compiled for the proc macro and therefore
  12. # prevent the main code from compiling!
  13. [dependencies]
  14. serde_json = "1.0"
  15. serde = { workspace = true, features = ["derive"] }