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