-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
44 lines (39 loc) · 970 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
[package]
name = "rustlang_discord_mod_bot"
version = "0.1.0"
authors = ["technetos <[email protected]>"]
edition = "2018"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = { version = "0.3" }
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3" }
diesel = { version = "1.4.0", features = ["postgres"] }
diesel_migrations = { version = "1.4.0", features = ["postgres"] }
serde = "1.0"
serde_derive = "1.0"
envy = "0.4"
indexmap = "1.6"
[dependencies.sqlx]
features = [
"runtime-tokio-native-tls",
"postgres",
"chrono",
]
version = "0.5"
[dependencies.serenity]
default-features = false
features = [
"builder",
"cache",
"client",
"gateway",
"model",
"utils",
"rustls_backend",
"chrono",
]
version = "0.11.5"