Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sniper00/moon_rs
A lightweight game server implemented in Rust and Lua
https://github.com/sniper00/moon_rs
actor game game-server lua rust tokio
Last synced: 3 months ago
JSON representation
A lightweight game server implemented in Rust and Lua
- Host: GitHub
- URL: https://github.com/sniper00/moon_rs
- Owner: sniper00
- Created: 2024-01-07T14:46:24.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-12T16:23:43.000Z (3 months ago)
- Last Synced: 2024-11-12T17:28:11.537Z (3 months ago)
- Topics: actor, game, game-server, lua, rust, tokio
- Language: Rust
- Homepage:
- Size: 809 KB
- Stars: 26
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Moon in Rust
This project is a reimplementation of `moon` in Rust. It's currently under development.
`moon`, originally implemented in C++&Lua, is a lightweight, high-performance game server framework. This Rust version aims to maintain the simplicity and efficiency of the original, while leveraging the safety and concurrency features of Rust.
Please note that this project is still in the early stages of development. Contributions and feedback are welcome.
## Test
```
cargo run --release assets/example.lua
cargo run --release assets/benchmark_send.lua
```## Development Status
The project is currently in the development phase. Many features from the original Moon are yet to be implemented.
## Why Rust?
Rust is a modern system programming language focused on performance, reliability, and productivity. It offers the low-level control of C and C++ but with the added benefit of a strong compile-time correctness guarantee. Its rich type system and ownership model guarantee memory safety and thread safety.
## License
This project is licensed under the MIT License. See the LICENSE file for more details.