forked from SwarmBotMC/SwarmBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
131 lines (91 loc) · 2.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[package]
name = "swarm-bot"
version = "0.3.3"
edition = "2021"
description = "A autonomous bot launcher for Minecraft"
license = "GPL-2.0-or-later"
readme = "README.md"
authors = ["Andrew Gazelka <[email protected]>"]
repository = "https://github.com/andrewgazelka/SwarmBot"
homepage = "https://github.com/andrewgazelka/SwarmBot"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# parsing arguments
clap = { version = "3.0.0-rc.5", features = ["derive"] }
# reading from csv
csv = "1.1"
# serialization, deserialization
serde = { version = "1.0", features = ["derive"] }
# socks5
tokio-socks = "0.5"
# tokio
tokio = { version = "1.15", features = ["rt", "io-std", "io-util", "sync", "parking_lot"] }
# async trait
async-trait = "0.1"
# dns
trust-dns-resolver = "0.21.0-alpha.4"
# encryption
aes = "0.7"
cfb8 = "0.7"
# zlib
#flate2 = {version = "1.0"}
flate2 = { version = "1.0", features = ["zlib-ng-compat"], default-features = false }
# get_u8, etc extensions
bytes = "1.1"
# threads
rayon = "1.5"
# mojang https api
reqwest = { version = "0.11", features = ["json", "socks"] }
# for minecraft auth RSA response
rsa-der = "0.3"
rsa = "0.5"
# used for RSA and random generation
rand = "0.8"
# mojang hash
num-bigint = "0.4"
# mojang hash
sha1 = "0.6"
# json parsing (particularly for mojang api)
serde_json = "1.0"
# quite a few uses
itertools = "0.10"
# for data storage
bincode = "2.0.0-alpha.2"
# chat parsing
regex = "1.5"
# efficient hashmap
indexmap = { version = "1.7", features = ["std"] }
float-ord = "0.3"
# for num casting
num = "0.4"
# for coloring terminal
ansi_term = "0.12"
# for printing stuff out
crossterm = "0.22"
# for small stack-allocated arrays
smallvec = { version = "1.7", features = ["const_generics"] }
# for parsing nbt
hematite-nbt = "0.5"
swarm-bot-packets = { path = "packets", version = "0.2.0" }
# so we don't have to use v-tables
enum_dispatch = "0.3"
# for errors
thiserror = "1.0"
# websockets
tokio-tungstenite = "0.16"
futures = "0.3"
#futures-util = "0.3"
interfaces = { path = "interfaces" }
[dev-dependencies]
assert_matches = "1.5"
more-asserts = "0.2"
primes = "0.3"
[workspace]
members = ["packets", "interfaces"]
[profile.dev]
split-debuginfo = "unpacked"
opt-level = 1
[profile.release]
debug = true
#lto = "fat"
#codegen-units = 1