An open API service indexing awesome lists of open source software.

https://github.com/ndeta100/rust_chat_server

Creating a simple chat server with rust using async
https://github.com/ndeta100/rust_chat_server

rust-lang tcp-server telnet-server tokio-rs

Last synced: 7 months ago
JSON representation

Creating a simple chat server with rust using async

Awesome Lists containing this project

README

          

# creating a simple chat server with rust using async from the tokio lib

run `cargo new chat_server` to create project file

Add tokio to your cargo toml file `tokio = { version = "1", features = ["full"] }`

you might encounter a Macro error here is a hint to fix it `frame-support = { version = "2.0.0" }`
And use `use frame_support::decl_storage;`