initial commit

This commit is contained in:
Lionarius
2023-04-01 01:53:57 +03:00
commit 8fccaa81ca
7 changed files with 206 additions and 0 deletions

11
Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[package]
name = "mixer_discord_bot"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "*", features = ["full"] }
serenity = { version = "*", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] }
sqlx = { version = "*", features = ["runtime-tokio-rustls", "sqlite"] }
sea-orm = { version = "*", features = ["sqlx-sqlite", "runtime-tokio-rustls", "macros"] }
ctrlc = "*"