Cargo.toml 759 B

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