From 4a44c58444c901d939a8594669c819ab2bfbac13 Mon Sep 17 00:00:00 2001 From: mat Date: Tue, 7 Dec 2021 22:12:16 +0000 Subject: keep doing packet stuff --- minecraft-chat/Cargo.toml | 8 ++++++++ minecraft-chat/src/lib.rs | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 minecraft-chat/Cargo.toml create mode 100644 minecraft-chat/src/lib.rs (limited to 'minecraft-chat') 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); + } +} -- cgit v1.2.3