Cargo.toml 662 B

123456789101112131415161718192021222324252627282930
  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. # GFX / OPENGL
  15. gfx = "0.18"
  16. gfx_device_gl = "0.16"
  17. gfx_window_glutin = "0.31"
  18. glutin = "0.21"
  19. imgui-winit-support = { default-features = false, features = ["winit-19"] }
  20. imgui-gfx-renderer = "*"
  21. # GLIUM - DISABLE UNTIL THIS WORKS WITH RODIO
  22. # glium = { version = "0.26", default-features = true }
  23. # imgui-glium-renderer = "*"
  24. # imgui-winit-support = "*"