aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2021-12-15 23:10:55 -0600
committermat <github@matdoes.dev>2021-12-15 23:10:55 -0600
commit9642558f8f8d983a7087f15d68be8cf07a85f0c2 (patch)
tree5f0a967f005cd5db510a13ab290c8ad6669b25aa /Cargo.lock
parent72aefe871ca4983431b1a0b707b472e73ffea836 (diff)
downloadazalea-drasl-9642558f8f8d983a7087f15d68be8cf07a85f0c2.tar.xz
azalea
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock84
1 files changed, 42 insertions, 42 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f2728389..e999fcc1 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -31,6 +31,46 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
+name = "azalea-chat"
+version = "0.1.0"
+dependencies = [
+ "lazy_static",
+ "serde",
+ "serde_json",
+]
+
+[[package]]
+name = "azalea-client"
+version = "0.1.0"
+dependencies = [
+ "azalea-protocol",
+]
+
+[[package]]
+name = "azalea-core"
+version = "0.1.0"
+dependencies = [
+ "uuid",
+]
+
+[[package]]
+name = "azalea-protocol"
+version = "0.1.0"
+dependencies = [
+ "async-recursion",
+ "async-trait",
+ "azalea-chat",
+ "byteorder",
+ "bytes",
+ "serde",
+ "serde_json",
+ "thiserror",
+ "tokio",
+ "tokio-util",
+ "trust-dns-resolver",
+]
+
+[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -40,8 +80,8 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
name = "bot"
version = "0.1.0"
dependencies = [
- "minecraft-client",
- "minecraft-protocol",
+ "azalea-client",
+ "azalea-protocol",
"tokio",
]
@@ -285,46 +325,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
-name = "minecraft-chat"
-version = "0.1.0"
-dependencies = [
- "lazy_static",
- "serde",
- "serde_json",
-]
-
-[[package]]
-name = "minecraft-client"
-version = "0.1.0"
-dependencies = [
- "minecraft-protocol",
-]
-
-[[package]]
-name = "minecraft-core"
-version = "0.1.0"
-dependencies = [
- "uuid",
-]
-
-[[package]]
-name = "minecraft-protocol"
-version = "0.1.0"
-dependencies = [
- "async-recursion",
- "async-trait",
- "byteorder",
- "bytes",
- "minecraft-chat",
- "serde",
- "serde_json",
- "thiserror",
- "tokio",
- "tokio-util",
- "trust-dns-resolver",
-]
-
-[[package]]
name = "mio"
version = "0.7.14"
source = "registry+https://github.com/rust-lang/crates.io-index"