Cargo.toml 830 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. failure = "0.1"
  20. [dependencies.glium]
  21. #version = "0.17.1"
  22. git = "https://github.com/cmr/glium.git"
  23. optional = true
  24. features = ["glutin"]
  25. [dependencies.'piston2d-graphics']
  26. version = "0.22.0"
  27. optional = true
  28. [dependencies.'piston2d-glium_graphics']
  29. version = "0.43.0"
  30. optional = true
  31. [dependencies.palette]
  32. version = "0.2"
  33. optional = true