-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (41 loc) · 981 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
35
36
37
38
39
40
41
42
43
44
[package]
name = "minecraft"
version = "0.1.0"
authors = ["ColinTimBarndt <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Core
tokio = { version = "0.2", features = ["full"] }
futures = "0.3.1"
async-trait = "0.1.*"
# Logging
colorful = "0.2.1"
# Serial
serde = "1.0"
serde_json = "1.0"
reqwest = { version = "0.10", features = ["json"] }
hematite-nbt = "0.5"
byteorder = "1"
rustc-serialize = "0.3"
# Encryption dependencies
rust-crypto = "0.2.36"
openssl = "0.10"
rsa-der = "0.2.1"
# Math dependencies
rand = "0.7"
#micromath = { version = "1.0.0", features = ["vector"] }
num-bigint = "0.3"
num-traits = "0.2"
num-derive = "0.3"
regex = "1"
uuid = { version = "0.8", features = ["default", "v3", "v4"] }
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
panic = "unwind"
lto = "fat"
incremental = true
codegen-units = 32