atlasserver 0.3.0

Atlas is a rust library for the purpose of composing REST APIs out of re-usable and extensible modules, specifically with supporting the networking needs of online gaming services in mind.
docs.rs failed to build atlasserver-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

crates ci

atlas

atlasserver is a rust library for the purpose of composing REST APIs out of re-usable and extensible modules, specifically with supporting the networking needs of online gaming services in mind.

How it works

Structs which implement the CustomModule trait are joined by an object which implements the CustomServer trait, which dispatches the warp filters defined within the modules. CustomModules can work on data through the use of "resources", which are arbitrary types that are stored in an HList.

See the examples in the repo for more details.

Features

  • modular/extendable
  • supports JSON/Protobuf payloads
  • data storage for dynamodb (can be exchanged)

Endpoints:

  • User Registration
  • User Login (+ session validation)