Cargo.toml 398 B

123456789101112131415161718192021
  1. [package]
  2. name = "sampler"
  3. version = "0.1.0"
  4. authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
  5. [features]
  6. default = ["wav"]
  7. wav = ["hound"]
  8. [dependencies]
  9. instrument = { path = "../instrument" }
  10. pitch_calc = "0.10.0"
  11. sample = "0.3.0"
  12. time_calc = "0.10.1"
  13. # optional dependencies
  14. hound = { optional = true, version = "1.1.0" }
  15. [dev-dependencies]
  16. find_folder = "0.3.0"
  17. portaudio = "0.6.2"