Cargo.toml 797 B

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