aboutsummaryrefslogtreecommitdiff
path: root/minecraft-chat
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2021-12-07 22:12:16 +0000
committermat <github@matdoes.dev>2021-12-07 22:12:16 +0000
commit4a44c58444c901d939a8594669c819ab2bfbac13 (patch)
tree5085824e8af8bb9209f7defa178f1010fc29e436 /minecraft-chat
parent9c14b3f32346f071ad12faf86105f5fd3ce03959 (diff)
downloadazalea-drasl-4a44c58444c901d939a8594669c819ab2bfbac13.tar.xz
keep doing packet stuff
Diffstat (limited to 'minecraft-chat')
-rw-r--r--minecraft-chat/Cargo.toml8
-rw-r--r--minecraft-chat/src/lib.rs7
2 files changed, 15 insertions, 0 deletions
diff --git a/minecraft-chat/Cargo.toml b/minecraft-chat/Cargo.toml
new file mode 100644
index 00000000..4607dc99
--- /dev/null
+++ b/minecraft-chat/Cargo.toml
@@ -0,0 +1,8 @@
+[package]
+name = "minecraft-chat"
+version = "0.1.0"
+edition = "2018"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
diff --git a/minecraft-chat/src/lib.rs b/minecraft-chat/src/lib.rs
new file mode 100644
index 00000000..31e1bb20
--- /dev/null
+++ b/minecraft-chat/src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}