Cosworth

A Rust framework for building JSON web services

Purpose

This is a tool for building web services to be compiled into Rust static binaries and deployed into Docker containers. It is very much a work in progress, so there is no tutorial yet.

It should be useful in production environments where safety and predictable performance take precedence over built-in frontends, formats other than JSON, streaming responses, etc. The production server should compile into a Docker image that weighs less than 25MB and responds faster (in the worst case) than just about anything that uses a memory-managed language.

Goals

Web services built with this tool have the following goals, in approximate order of importance:

  1. Safe: The server should be difficult to exploit or DoS.
  2. Efficient: The server should not waste CPU, memory, or disk space.
  3. Predictable: The server should not slow down during operation.
  4. Fast: The server should handle a lot of requests quickly.
  5. Simple: The server should not be more complex than is necessary.
  6. Easy: The server should not be difficult to develop or debug.

While some other frameworks run faster and most will be easier to get started using, they also have one or more disadvantages:

By being both prescriptive and modest about the scope from the start, the hope is that this framework will maintain a balance between the extremes which is best suited for achieving its goals.

Roadmap

Support is planned for these features:

Support is under consideration for these features:

Current dependencies include diesel for accessing databases, serde for manipulating JSON, and actix-web for serving HTTP requests. The architecture will probably use the actix actor system underneath actix-web.