-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 781 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (23 loc) · 781 Bytes
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
[package]
authors = ["CodeDead <admin@codedead.com>"]
description = "Discord bot for retrieving Maiar Exchange economics"
edition = "2021"
keywords = ["api", "elrond", "egld", "serenity", "codedead", "maiar"]
license = "GPL-3.0"
name = "mexbot"
readme = "README.md"
repository = "https://github.com/CodeDead/mexbot"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = "0.11.10"
serde = "1.0.137"
serde_json = "1.0.81"
serenity = {version = "0.11.2", default-features = false, features = ["client", "gateway", "rustls_backend", "model"]}
tokio = {version = "1.19.2", features = ["rt-multi-thread"]}
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
panic = "abort"
strip = true