jaybutera / mmo-rust-server

A simple example server in asynchronous Rust for MMO games
126 stars 17 forks source link

to_json question #1

Closed asonix closed 5 years ago

asonix commented 5 years ago

Did you intentionally use format! over Serde to output json because it was faster and not error-producing?

jaybutera commented 5 years ago

Honestly just didn't want to add a dependency for such a simple serialization. As it grows in complexity, Serde should work fine.