-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
49 lines (45 loc) · 1.12 KB
/
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
48
49
[package]
name = "testbot"
version = "0.1.0"
authors = ["Travis Carr <[email protected]>"]
edition = "2021"
readme = "README.md"
repository = "https://github.com/tmcarr/testbot"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# env_logger = "0.9.0"
log = "0.4.20"
rand = "0.8.5"
# migrant_lib = "0.33.0"
reqwest = { version = "0.12.5", features = ["blocking", "json"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.105"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread", "time"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["std", "env-filter"] }
dotenvy = "0.15.7"
[dependencies.serenity]
default-features = false
features = [
"builder",
"cache",
"client",
"collector",
"framework",
"gateway",
"http",
"model",
"standard_framework",
"utils",
"rustls_backend",
"unstable_discord_api"
]
version = "0.11.7"
# [dependencies.diesel]
# version = "2.0.2"
# features = [
# "postgres",
# "r2d2",
# ]
# [dependencies.diesel_migrations]
# version = "2.0.0"