Cargo.toml 540 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "patina"
  3. version = "0.0.1"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. log = "0.4"
  8. jumprope = "1.1"
  9. # for window initialization
  10. winit = { version = "0.30.0", default-features = false, features = ["x11", "wayland", "rwh_06"] }
  11. # for layout
  12. euclid = { version = "0.22" }
  13. # for rendering
  14. softbuffer = "0.4.2"
  15. kahlo = { git = "https://git.flying-kestrel.ca/kestrel/kahlo-rs.git", rev = "69001b5" }
  16. fontdue = "0.9.0"
  17. [dev-dependencies]