Cargo.toml 814 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "synfone"
  3. version = "0.1.0"
  4. authors = ["Graham Northup <grissess@nexusg.org>"]
  5. [[bin]]
  6. name = "synfone"
  7. doc = false
  8. [features]
  9. default = ['graphics']
  10. # The following feature will always refer ultimately to whatever backend
  11. # graphics library is chosen--which is subject to change.
  12. graphics = ['glium', 'piston2d-graphics', 'piston2d-glium_graphics', 'palette']
  13. [dependencies]
  14. byteorder = "1.1.0"
  15. rand = "0.3"
  16. unicode-xid = "0.1.0"
  17. portaudio = "0.7.0"
  18. xml-rs = "0.8.0"
  19. [dependencies.glium]
  20. #version = "0.17.1"
  21. git = "https://github.com/cmr/glium.git"
  22. optional = true
  23. features = ["glutin"]
  24. [dependencies.'piston2d-graphics']
  25. version = "0.22.0"
  26. optional = true
  27. [dependencies.'piston2d-glium_graphics']
  28. version = "0.43.0"
  29. optional = true
  30. [dependencies.palette]
  31. version = "0.2"
  32. optional = true