Skip to content

Commit

Permalink
add dependencies for valence_network
Browse files Browse the repository at this point in the history
  • Loading branch information
dyc3 committed Jan 27, 2023
1 parent 58a5931 commit 19657e7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions crates/valence_network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,31 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.65"
base64 = "0.21.0"
bevy_app = "0.9.1"
bevy_ecs = "0.9.1"
bytes = "1.2.1"
flume = "0.10.14"
hmac = "0.12.1"
num = "0.4.0"
rand = "0.8.5"
rsa = "0.7.2"
rsa-der = "0.3.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
sha1 = "0.10.5"
sha2 = "0.10.6"
thiserror = "1.0.35"
tokio = { version = "1.23.0", features = ["full"] }
tracing = "0.1.37"
url = { version = "2.2.2", features = ["serde"] }
uuid = { version = "1.1.2", features = ["serde"] }
valence_nbt = { version = "0.5.0", path = "../valence_nbt" }
valence_protocol = { version = "0.1.0", path = "../valence_protocol", features = ["encryption", "compression"] }

[dependencies.reqwest]
version = "0.11.12"
default-features = false
# Avoid OpenSSL dependency on Linux.
features = ["rustls-tls", "json"]

0 comments on commit 19657e7

Please sign in to comment.