Cargo.toml 440 B

1234567891011121314151617
  1. [package]
  2. name = "github-pages-static-generation"
  3. version = "0.1.0"
  4. edition = "2021"
  5. publish = false
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. dioxus = { workspace = true, features = ["static-generation", "router"] }
  9. tower = { workspace = true, features = ["util"] }
  10. tracing-subscriber = "0.3.18"
  11. [features]
  12. default = []
  13. server = ["dioxus/axum"]
  14. web = ["dioxus/web"]