-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (43 loc) · 1001 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "dscbot"
version = "0.1.1"
authors = ["Owen Salter <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
readme = "README.md"
description = "A General-Purpose Discord bot"
keywords = ["discord", "bot"]
repository = "https://git.sr.ht/~muirrum/campmasterconstantine"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.7.3"
pickledb = "0.4.1"
kankyo = "0.3"
env_logger = "0.7.1"
log = "0.4.8"
tokio = { version = "0.2", features = ["macros"] }
serde = { version = "1", features = ["derive"]}
[dependencies.serenity]
git = "https://github.com/Lakelezz/serenity.git"
branch = "await"
default-features = false
features = [
"builder",
"client",
"framework",
"model",
"cache",
"standard_framework",
"utils",
"rustls_backend"
]
[dependencies.sqlx]
version = "0.3"
default-features = false
features = [
"runtime-tokio",
"macros",
"postgres",
"tls",
"chrono"
]