-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
36 lines (33 loc) · 911 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
[package]
name = "lure"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes = "0.7.5"
anyhow = "1.0.70"
base64 = "0.21.0"
bevy_ecs = "0.10.0"
bytes = "1.4.0"
cfb8 = "0.7.1"
flate2 = "1.0.25"
image-meta = "0.1.2"
mimalloc = "0.1.34"
num = "0.4.0"
rand = "0.8.5"
rsa = "0.8.2"
rsa-der = "0.3.0"
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
sha1= "0.10.5"
sha2 = "0.10.6"
thiserror = "1.0.40"
tokio = { version = "1.27.0", features = ["full", "rt-multi-thread", "tracing"] }
toml = "0.7.3"
tracing = "0.1.37"
valence = { git = "https://github.com/valence-rs/valence"}
valence_protocol = { git = "https://github.com/valence-rs/valence", features = ["compression", "encryption"] }
[dependencies.reqwest]
version = "0.11.12"
default-features = false
features = ["rustls-tls", "json"]