forked from Squidtoon99/bookmark-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (33 loc) · 1023 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
[package]
name = "rust-discord-bot"
version = "0.1.0"
authors = ["mcdallas <[email protected]>"]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
cfg-if = "0.1.2"
worker = "0.0.14"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.67"
serde_repr = "0.1"
thiserror = "1.0"
ed25519-dalek = "1.0.1"
hex = "0.4.2"
reqwest = "0.11.11"
async-trait = "0.1.57"
twilight-model = "0.15.1"
twilight-util = {version = "0.15.1", features = ["builder"]}
twilight-validate = "0.15.1"
regex = "1.7.2"
# lazy_static = "1.4.0"
# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
# code size when deploying.
console_error_panic_hook = { version = "0.1.1", optional = true }
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"