aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2021-12-20 15:22:02 -0600
committermat <github@matdoes.dev>2021-12-20 15:22:02 -0600
commit6ae94b96e6d51e3bf251d4a01f17fa7d41c9500f (patch)
tree3153984562016e703eefd71b4b1de4151d47fdde /Cargo.lock
parentcf88c7b7956398eba2e0d6ed86dbf3268fdb512b (diff)
downloadazalea-drasl-6ae94b96e6d51e3bf251d4a01f17fa7d41c9500f.tar.xz
start adding nbt to the protocol
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock22
1 files changed, 22 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 10c936ff..c037630d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -95,11 +95,14 @@ dependencies = [
name = "azalea-nbt"
version = "0.1.0"
dependencies = [
+ "async-compression",
+ "async-recursion",
"byteorder",
"criterion",
"flate2",
"num-derive",
"num-traits",
+ "tokio",
]
[[package]]
@@ -112,6 +115,7 @@ dependencies = [
"azalea-auth",
"azalea-chat",
"azalea-core",
+ "azalea-nbt",
"byteorder",
"bytes",
"serde",
@@ -214,6 +218,7 @@ dependencies = [
"clap",
"criterion-plot",
"csv",
+ "futures",
"itertools",
"lazy_static",
"num-traits",
@@ -226,6 +231,7 @@ dependencies = [
"serde_derive",
"serde_json",
"tinytemplate",
+ "tokio",
"walkdir",
]
@@ -352,12 +358,27 @@ dependencies = [
]
[[package]]
+name = "futures"
+version = "0.3.17"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca"
+dependencies = [
+ "futures-channel",
+ "futures-core",
+ "futures-io",
+ "futures-sink",
+ "futures-task",
+ "futures-util",
+]
+
+[[package]]
name = "futures-channel"
version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fc8cd39e3dbf865f7340dce6a2d401d24fd37c6fe6c4f0ee0de8bfca2252d27"
dependencies = [
"futures-core",
+ "futures-sink",
]
[[package]]
@@ -391,6 +412,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41d22213122356472061ac0f1ab2cee28d2bac8491410fd68c2af53d1cedb83e"
dependencies = [
"futures-core",
+ "futures-sink",
"futures-task",
"pin-project-lite",
"pin-utils",