-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
53 lines (40 loc) · 1.29 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
[package]
name = "stasis-bot"
version = "0.3.0-beta.5"
edition = "2021"
authors = ["EnderKill98"]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[patch."https://github.com/azalea-rs/azalea-viaversion.git"]
azalea = { git = "https://github.com/EnderKill98/azalea.git", rev = "ca0e5b0b" }
[dependencies]
# CLI Opt parsing
clap = { version = "4", features = ["derive"] }
# Async Runtime
tokio = "1"
# Easy error handling
anyhow = "1"
# The amazing bot library!
#azalea = { git = "https://github.com/EnderKill98/azalea.git", rev = "ca0e5b0b", default-features = false }
azalea = { git = "https://github.com/azalea-rs/azalea.git", rev = "2992fc6b", default-features = false }
# Make the amazing bot library even more amazing!
azalea-viaversion = { git = "https://github.com/EnderKill98/azalea-viaversion.git", rev = "62e5aecd" }
#azalea-viaversion = { path = "../azalea-viaversion" }
parking_lot = "0.12"
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"
# Serde
serde = { version = "1", features = ["derive"] }
serde_json = "1"
once_cell = "1"
# For OpenAuthMod Plugin
reqwest = { version = "0.12", default-features = false, features = [
"stream",
"native-tls-vendored",
] }
#paho-mqtt = { version = "0.12", features = ["vendored-ssl"] }
# Easy command input
#rustyline = "14"