This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
47 lines (43 loc) · 1.68 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
[package]
name = "gearbot"
version = "0.1.0"
authors = ["AEnterprise <aenterprise@aenterprise.info>", "BlackHoleFox <blackholefoxdev@gmail.com>", "GearBot Contributors"]
edition = "2018"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes-gcm = "0.8"
bitflags = "1.2"
chrono = "0.4"
ctrlc = { version = "3", features = ["termination"] }
darkredis = "0.8"
flexi_logger = { version = "0.17", default-features = false, features = ["colors", "specfile", "compress"] }
fluent-bundle = "0.15"
futures-util = { version = "0.3", default-features = false }
git-version = "0.3"
hyper = { version = "0.14", default-features = false, features = ["server"] }
intl-memoizer = "0.5"
lazy_static = "1.4"
log = "0.4"
num-integer="0.1"
once_cell = "1.5"
prometheus = { version = "0.12", default-features = false }
rand = "0.8"
regex = "1.4"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1"
sqlx = { version = "0.5", default-features = false, features = ["postgres", "json", "runtime-tokio-rustls", "macros", "migrate"] }
tokio = { version = "1.5", default-features = false, features = ["macros", "sync", "rt-multi-thread"] }
toml = "0.5"
twilight-embed-builder = "0.3"
twilight-gateway = { version="0.3", default-features=false, features = ["rustls", "simd-json", "simd-zlib"] }
twilight-http = "0.3"
twilight-model = "0.3"
twilight-util = { version = "0.3", default-features = false, features = ["link"] }
url = "2.2"
unic-langid = { version = "0.9", features = ["macros", "serde"] }
uuid = { version = "0.8", features = ["serde", "v4"], default-features = false }
[profile.dev]
debug = 0
[profile.release]
lto = true