This is the server part of the HTTP repository of reproto.
Configuration for the server is defined in TOML, you can specify the configuration path to load
using the REPROTO_SERVER_CONFIG
environment variable.
The following is a configuration with all options.
```toml
listen_address = "127.0.0.1:1234"
objects = "/var/reproto-server/objects"
maxfilesize = 10000000 ```
For a complete set of options and implementation details, please see config.rs.