3HNUR4KDQ4JFT5KRBV653LPKD5337DBONECO6QCNMKML54KLYSEAC This is a Rust implementation of the "Effective servers" assignement from B4M36ESW CTU FEE course.To run the server```pijul clone https://nest.pijul.com/maxholl/servercd servercargo run --release```The program serves on port 8000 by default. To change the port, change the argument to `TcpListener`in `main`.The server is implemented as a single file, as most of the functionality is handled by externaldependencies.`dashmap` concurrent hashset`flate2` gzip decompression`prost` protobuf (de)serializationDue to the low ammount of concurrent connections in the tested scenario, the server spawns a newthread for each connection.