Cargo.toml 711 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "sampler"
  3. version = "0.1.0"
  4. authors = ["Johann Woelper <woelper@gmail.com>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. rodio = "*"
  9. imgui = "*"
  10. log = "*"
  11. env_logger = "*"
  12. walkdir = "*"
  13. image = "0.23"
  14. serde = "*"
  15. serde_derive = "*"
  16. serde_json = "*"
  17. # GFX / OPENGL
  18. gfx = "0.18"
  19. gfx_device_gl = "0.16"
  20. gfx_window_glutin = "0.31"
  21. glutin = "0.21"
  22. imgui-winit-support = { default-features = false, features = ["winit-19"] }
  23. imgui-gfx-renderer = "*"
  24. # GLIUM - DISABLE UNTIL THIS WORKS WITH RODIO
  25. # glium = { version = "0.26", default-features = true }
  26. # imgui-glium-renderer = "*"
  27. # imgui-winit-support = "*"