-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
executable file
·151 lines (130 loc) · 4.93 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
cargo-features = ["strip"]
[package]
name = "arc_bot"
version = "0.3.4-alpha"
authors = ["vicky5124 <[email protected]>"]
edition = "2018"
license = "MPL-v2"
readme = "README.md"
description = "A Highly General-Purpose, Multi-Guild Discord bot"
keywords = ["discord", "bot", "serenity"]
repository = "https://gitlab.com/vicky5124/robo-arc/"
#bot_invite = "https://discord.com/api/oauth2/authorize?client_id=551759974905151548&scope=bot+applications.commands&permissions=808971478"
#bot_owner = 182891574139682816
#prefixes = [".", "mention", "configurable"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] # a lot of github smh
toml = "0.5" # https://github.com/alexcrichton/toml-rs
regex = "1" # https://github.com/rust-lang/regex
bitflags = "1" # https://github.com/bitflags/bitflags
num-format = "0.4" # https://github.com/bcmyers/num-format
serde_json = "1" # https://github.com/serde-rs/json
serde-aux = "2" # https://github.com/vityafx/serde-aux
image = "0.23" # https://github.com/image-rs/image
libwebp-image = "0.2" # https://github.com/qnighy/libwebp-image-rs
qrcode = "0.12" # https://github.com/kennytm/qrcode-rust
tracing = "0.1" # https://github.com/tokio-rs/tracing
tracing-subscriber = "0.2" # https://github.com/tokio-rs/tracing
tracing-log = "0.1" # https://github.com/tokio-rs/tracing
futures = "0.3" # https://github.com/rust-lang/futures-rs
http = "0.2" # https://github.com/hyperium/http
rust-crypto = "0.2" # https://github.com/dagenix/rust-crypto
hex = "0.4" # https://github.com/KokaKiwi/rust-hex
photon-rs = "0.3" # https://github.com/silvia-odwyer/photon
dotenv = "0.15" # https://github.com/dotenv-rs/dotenv
walkdir = "2" # https://github.com/BurntSushi/walkdir
indexmap = "=1.6.2" # https://github.com/tkaitchuck/aHash/issues/95
itertools = "0.7" # https://github.com/bluss/rust-itertools
tokei = "12" # https://github.com/xampprocky/tokei
warp = "0.3" # https://github.com/seanmonstar/warp/
chrono = "0.4" # https://github.com/chronotope/chrono
humantime = "2.0" # https://github.com/tailhook/humantime
fasteval = "0.2" # https://github.com/likebike/fasteval
darkredis = "0.8" # https://github.com/bunogi/darkredis
num_cpus = "1" # https://github.com/seanmonstar/num_cpus
clap = "2" # https://github.com/clap-rs/clap
#racer = "=2.1.40" # https://github.com/racer-rust/racer/
#openssl = { version = "*", optional = true }
#
#[features]
#default = ["reqwest/default-tls"]
#vendored-openssl = ["openssl/vendored"]
# https://github.com/rust-random/rand
[dependencies.rand]
version = "0.8"
features = ["getrandom", "std"]
[dependencies.parking_lot]
version = "0.12"
features = ["send_guard"]
[dependencies.tokio]
version = "1"
features = ["full"]
# https://github.com/serenity-rs/serenity
[dependencies.serenity]
git = "https://github.com/serenity-rs/serenity"
branch = "next"
#path = "../serenity"
#git = "https://github.com/acdenisSK/serenity"
#branch = "optional_deserialisation"
#version = "0.10"
default-features = false
features = ["builder", "cache", "client", "framework", "gateway", "http", "model", "standard_framework", "utils", "rustls_backend", "absolute_ratelimits", "collector", "voice", "unstable_discord_api", "chrono"]
# https://github.com/seanmonstar/reqwest
[dependencies.reqwest]
version = "0.11"
default-features = false
features = ["json", "multipart", "stream", "rustls-tls"]
# https://github.com/serde-rs/serde
# https://serde.rs/
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.sqlx]
version = "0.5"
#git = "https://github.com/launchbadge/sqlx/"
#branch = "master"
default-features = false
features = ["macros", "postgres", "uuid", "offline", "chrono", "runtime-tokio-rustls"]
# https://github.com/tafia/quick-xml
[dependencies.quick-xml]
version = "0.22"
features = ["serialize"]
[dependencies.osu_perf]
#git = "https://gitlab.com/JackRedstonia/osu-perf"
git = "https://gitlab.com/vicky5124/osu-perf"
branch = "types_redo"
# https://github.com/uuid-rs/uuid
[dependencies.uuid]
version = "0.8"
features = ["v4"]
[dependencies.lavalink-rs]
git = "https://gitlab.com/vicky5124/lavalink-rs/"
branch = "next-deps"
#version = "0.6.0-rc"
features = ["serenity"]
[dependencies.songbird]
git = "https://github.com/serenity-rs/songbird/"
branch = "next"
#version = "0.2"
default-features = false
features = ["serenity-rustls", "gateway"]
[patch.crates-io.serenity]
git = "https://github.com/serenity-rs/serenity"
branch = "next"
#path = "../serenity"
#git = "https://github.com/acdenisSK/serenity"
#branch = "optional_deserialisation"
#[patch."https://github.com/serenity-rs/serenity".serenity]
#git = "https://github.com/serenity-rs/serenity"
#branch = "next"
#path = "../serenity"
#git = "https://github.com/acdenisSK/serenity"
#branch = "optional_deserialisation"
[patch.crates-io.songbird]
git = "https://github.com/serenity-rs/songbird"
branch = "next"
# used for profiling for flamegraph
# https://github.com/flamegraph-rs/flamegraph
[profile.release]
debug = true
strip = "symbols"