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
- Host: GitHub
- URL: https://github.com/ndeta100/rust_chat_server
- Owner: Ndeta100
- Created: 2022-07-05T08:53:32.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-05T13:44:44.000Z (over 3 years ago)
- Last Synced: 2025-04-11T05:54:02.534Z (9 months ago)
- Topics: rust-lang, tcp-server, telnet-server, tokio-rs
- Language: Rust
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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;`