18 lines
No EOL
554 B
TOML
18 lines
No EOL
554 B
TOML
[package]
|
|
name = "discord-kurante"
|
|
version = "0.1.0"
|
|
authors = ["Edward Shen <code@eddie.sh>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = "2"
|
|
serenity = { git = "https://github.com/Lakelezz/serenity", branch = "await"}
|
|
regex = "1"
|
|
sqlx = { version = "0.3", default-features = false, features = [ "runtime-tokio", "macros", "sqlite"] }
|
|
futures = "0.3"
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
dotenv = "0.15"
|
|
rand = "0.7"
|
|
unicode-segmentation = "1.6.0" |