-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 850 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 850 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
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "rust-nitro-sniper"
version = "2.6.6"
authors = ["Mel"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1.3.9"
lazy_static = "1.4.0"
hyper = "0.13.7"
hyper-tls = "0.4.3"
chrono = "0.4.13"
log = "0.4.11"
colored = "2.0.0"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
futures = "0.3.5"
once_cell = "1.4.1"
[dependencies.serenity]
git = "https://github.com/Melonai/serenity"
branch = "current"
default-features = false
features = ["client", "rustls_backend", "model", "builder", "cache", "http", "utils", "gateway"]
[dependencies.tokio]
version = "0.2.22"
features = ["macros"]
[dependencies.fern]
version = "0.6.0"
features = ["colored"]
[target.'cfg(unix)'.dependencies]
openssl = { version = "0.10.30", features = ["vendored"] }