forked from The-Noah/minebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (27 loc) · 773 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
[package]
name = "minebot"
version = "1.0.0"
edition = "2021"
authors = ["Noah Dunbar <[email protected]>"]
description = "A simple Discord bot to interact with your Minecraft server"
categories = ["command-line-utilities"]
readme = "README.md"
homepage = "https://github.com/The-Noah/minebot"
repository = "https://github.com/The-Noah/minebot"
license = "MIT"
include = ["**/*.rs", "Cargo.{toml,lock}", "LICENSE", "README.md"]
[dependencies]
async-minecraft-ping = "0.8.0"
dotenv = "0.15.0"
rcon = { version = "0.6.0", features = ["rt-tokio"] }
serenity = { version = "0.12.2", default-features = false, features = [
"client",
"gateway",
"model",
"rustls_backend",
] }
tokio = { version = "1.38.0", features = [
"macros",
"rt-multi-thread",
"signal",
] }