-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
51 lines (40 loc) · 1.11 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
50
51
[package]
name = "testauskoira-rs"
version = "0.1.0"
edition = "2021"
authors = ["Ville Järvinen <[email protected]>", "Luukas Pörtfors <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3
[dependencies.serenity]
version = "0.11"
default-features = false
features = ["cache", "client", "gateway","standard_framework", "rustls_backend", "model","framework", "unstable_discord_api", "chrono"]
[dependencies.tokio]
version = "1.15"
features = ["macros", "rt-multi-thread","signal"]
[dependencies.diesel]
version = "1.4"
features = ["mysql","chrono", "r2d2"]
[dependencies.openssl-sys]
version = "0.9.71"
features = ["vendored"]
[dependencies]
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = {version = "0.3", features = ["env-filter"]}
serde = "1.0"
serde_derive = "1.0"
reqwest = "0.11"
rustls = "0.20"
regex = {version = "1.5", features = ["default"]}
dotenv = "0.15"
futures = "0.3"
num-traits = "0.2"
rand = "0.8"
clokwerk = "0.4.0-rc1"
chrono = "0.4"
anyhow = "1.0"
image = "0.23"