Initial commit

This commit is contained in:
Alex Page 2021-09-14 00:27:19 -04:00
commit 6bcedfd0cd
7 changed files with 420 additions and 0 deletions

20
Cargo.toml Normal file
View file

@ -0,0 +1,20 @@
[package]
name = "dj-kitty-cat"
version = "0.1.0"
authors = ["my name <my@email.address>"]
edition = "2018"
[dependencies]
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-futures = "0.2"
songbird = "0.2"
[dependencies.serenity]
version = "0.10"
default-features = false
features = ["cache", "client", "gateway", "model", "voice", "rustls_backend", "unstable_discord_api"]
[dependencies.tokio]
version = "1.0"
features = ["macros", "rt-multi-thread", "signal"]