-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (32 loc) · 1022 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
[package]
authors = ["9-FS <[email protected]>"]
categories = []
description = ""
edition = "2021"
exclude = [".github/", "readme.pdf"] # additional to .gitignore
keywords = []
license = "MIT"
name = "minecraft_server_status"
readme = "readme.md"
repository = "https://github.com/9-FS/minecraft_server_status"
version = "3.2.4"
[dependencies]
async-minecraft-ping = "^0.8.0"
load_config = { git = "https://github.com/9-FS/load_config", tag = "1.2.1", features = [
"toml_file",
] }
log = "^0.4.0"
scaler = "^1.0.0"
serde = { version = "^1.0.0", features = ["derive"] }
serenity = { version = "^0.12.0", default-features = false, features = [
"builder",
"client",
"gateway",
"rustls_backend",
] }
setup_logging = { git = "https://github.com/9-FS/setup_logging", tag = "2.1.1" }
thiserror = "^1.0.0"
tokio = { version = "^1.0.0", features = ["rt-multi-thread"] }
[lints.clippy]
needless_late_init = "allow"
needless_return = "allow"