From 6c0da7431e673519ecf3286fe288a80bae1fe3af Mon Sep 17 00:00:00 2001 From: Garen Tyler Date: Wed, 8 Jul 2020 21:40:41 -0600 Subject: [PATCH 1/2] Update README.md --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 575b576..86b5504 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,13 @@ # Composition - A Minecraft server written in Rust + +Composition is targeting 1.15.2, protocol version 578. +The main goal is to get a working server, then optimize for speed. 1.16 support may come in the future, after 1.15 is completed. + +## Development Resources + + - [Normal Login Sequence](https://wiki.vg/Protocol_FAQ#What.27s_the_normal_login_sequence_for_a_client.3F) + - [Protocol Specification](https://wiki.vg/Protocol) + - [Server Ping](https://wiki.vg/Server_List_Ping) + - [Map Format](https://wiki.vg/Map_Format) + - [Rust TcpStream Docs](https://doc.rust-lang.org/std/net/struct.TcpStream.html) + - [Rust Channel Docs](https://doc.rust-lang.org/std/sync/mpsc/index.html) From 319242d8579967db272d400566c76ba99f393a87 Mon Sep 17 00:00:00 2001 From: Danton <43303409+khimno@users.noreply.github.com> Date: Wed, 8 Jul 2020 20:45:47 -0700 Subject: [PATCH 2/2] add log to gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2f7896d..531531d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ target/ +log.txt