-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.28 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
[package]
name = "dolphin-rs"
version = "2.8.0"
authors = ["Evan Maddock <maddock.evan@vivaldi.net>"]
license = "Apache-2.0"
description = "Connects your Minecraft server chat to Discord"
readme = "README.md"
homepage = "https://github.com/EbonJaeger/dolphin-rs"
repository = "https://github.com/EbonJaeger/dolphin-rs"
keywords = ["cli", "minecraft", "discord", "chat"]
categories = ["command-line-utilities"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.0", features = ["derive"] }
confy = "0.6.0"
lazy_static = "1.4.0"
linemux = "0.3.0"
pipeline = "0.5.0"
reqwest = { version = "0.12.0", features = ["json"] }
fancy-regex = "0.13.0"
rcon = { version = "0.6.0", features = ["rt-tokio"] }
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.74"
serenity = { version = "0.12.0", default-features = false, features = [
"client",
"gateway",
"cache",
"rustls_backend",
"model",
"unstable_discord_api",
] }
thiserror = "1"
tokio = { version = "1.38.0", features = ["rt-multi-thread", "sync", "time"] }
tracing = "0.1.29"
tracing-subscriber = "0.3.6"
warp = "0.3.2"
[profile.dev]
# Let's speed up compilation and maybe reduce dev binary size a bunch.
debug = 0