Cargo.toml 454 B

12345678910111213141516171819202122
  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']
  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. optional = true
  18. features = ["glutin"]