forked from valence-rs/valence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (70 loc) · 1.5 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
[package]
name = "valence"
version = "0.1.0+mc1.19.2"
edition = "2021"
description = "A framework for building Minecraft servers in Rust."
repository = "https://github.com/rj00a/valence"
readme = "README.md"
license = "MIT"
keywords = ["minecraft", "gamedev", "server"]
categories = ["game-engines"]
build = "build/main.rs"
authors = ["Ryan Johnson <[email protected]>"]
[dependencies]
aes = "0.7"
anyhow = "1"
approx = "0.5.1"
arrayvec = "0.7"
ascii = "1"
async-trait = "0.1"
base64 = "0.13"
bitfield-struct = "0.1"
bitvec = "1"
byteorder = "1"
cesu8 = "1.1.0"
cfb8 = "0.7"
flate2 = "1"
flume = "0.10"
futures = "0.3"
log = "0.4"
num = "0.4"
paste = "1"
rand = "0.8"
rayon = "1"
rsa = "0.6"
rsa-der = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_nbt = "0.1.0"
sha1 = "0.10"
sha2 = "0.10"
thiserror = "1"
url = { version = "2.2.2", features = ["serde"] }
uuid = { version = "1", features = ["serde"] }
vek = "0.15"
[dependencies.tokio]
version = "1"
features = ["macros", "rt-multi-thread", "net", "io-util", "sync", "time"]
[dependencies.reqwest]
version = "0.11"
default-features = false
# Avoid OpenSSL dependency on Linux.
features = ["rustls-tls", "json"]
[dev-dependencies]
env_logger = "0.9"
noise = "0.7"
[build-dependencies]
anyhow = "1"
heck = "0.4"
proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rayon = "1"
num = "0.4"
[workspace]
members = ["packet_inspector"]
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1