Cargo.toml 669 B

123456789101112131415161718192021
  1. [package]
  2. name = "octave_rust"
  3. version = "0.1.0"
  4. authors = ["Zhizhou Ma <zm9913@gmail.com>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. futures = "0.3.5"
  9. lazy_static = "1.4.0"
  10. rand = "0.8.3"
  11. serenity = {version = "0.12", features = ["standard_framework", "voice", "rustls_backend", "cache", "framework"] }
  12. songbird = {version = "0.4.3", features = ["serenity", "driver", "builtin-queue"]}
  13. tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "time", "sync"] }
  14. serde_json = "1.0.81"
  15. symphonia-core = "0.5"
  16. [dependencies.symphonia]
  17. version = "0.5"
  18. features = ["pcm"]