Rocket/examples
Sergio Benitez 5a4e66ec43 Split 'rocket_contrib' into distinct crates.
This follows the completed graduation of stable contrib features into
core, removing 'rocket_contrib' in its entirety in favor of two new
crates. These crates are versioned independently of Rocket's core
libraries, allowing upgrades to dependencies without consideration for
versions in core libraries.

'rocket_dyn_templates' replaces the contrib 'templates' features. While
largely a 1-to-1 copy, it makes the following changes:

  * the 'tera_templates' feature is now 'tera'
  * the 'handlebars_templates' feature is now 'handlebars'
  * fails to compile if neither 'tera' nor 'handlebars' is enabled

'rocket_sync_db_pools' replaces the contrib 'database' features. It
makes no changes to the replaced features except that the `database`
attribute is properly documented at the crate root.
2021-05-24 22:57:51 -07:00
..
config Graduate contrib 'json' and 'msgpack' into core. 2021-05-22 11:01:00 -07:00
cookies Split 'rocket_contrib' into distinct crates. 2021-05-24 22:57:51 -07:00
databases Split 'rocket_contrib' into distinct crates. 2021-05-24 22:57:51 -07:00
error-handling Retrieve managed state via a borrow: '&State<T>'. 2021-05-11 08:58:16 -05:00
fairings Retrieve managed state via a borrow: '&State<T>'. 2021-05-11 08:58:16 -05:00
forms Split 'rocket_contrib' into distinct crates. 2021-05-24 22:57:51 -07:00
hello Don't disable default 'Shield' in 'hello' example. 2021-05-22 17:20:36 -07:00
manual-routing Remove unnecessary second 'Handler' lifetimes. 2021-04-14 22:17:21 -07:00
pastebin Overhaul URI types, parsers, 'uri!' macro. 2021-05-19 18:47:11 -07:00
responders Move 'FileName', 'TempFile', 'NamedFile' to 'fs'. 2021-05-22 16:22:01 -07:00
serialization Graduate contrib 'uuid' into core. 2021-05-22 11:01:00 -07:00
state Retrieve managed state via a borrow: '&State<T>'. 2021-05-11 08:58:16 -05:00
static-files Move 'FileName', 'TempFile', 'NamedFile' to 'fs'. 2021-05-22 16:22:01 -07:00
templating Split 'rocket_contrib' into distinct crates. 2021-05-24 22:57:51 -07:00
testing Retrieve managed state via a borrow: '&State<T>'. 2021-05-11 08:58:16 -05:00
tls Rename 'rocket::ignite()' to 'rocket::build()'. 2021-04-08 01:07:52 -07:00
todo Split 'rocket_contrib' into distinct crates. 2021-05-24 22:57:51 -07:00
Cargo.toml Graduate contrib 'uuid' into core. 2021-05-22 11:01:00 -07:00
README.md Graduate 'serve' into core as 'fs', 'FileServer'. 2021-05-22 11:15:56 -07:00

README.md

Rocket Examples

This directory contains projects showcasing Rocket's features.

Applications

  • pastebin

    A simple, API-only pastebin application, similar to https://paste.rs. Stores pastes locally on the file system. Implements a custom parameter guard, PasteId, to parse and validate paste identifiers.

  • todo

    A todo app with a web UI to add, delete, and mark/unmark items. Uses a SQLite database driven by diesel. Runs migrations automatically at start-up. Uses tera to render templates.

Feature Examples

  • config - Illustrates how to extract values from a Rocket Figment, how to store and retrieve an application specific configuration in managed state using AdHoc::config(), and how to set configuration values in Rocket.toml.

  • cookies - Uses cookies to create a client-side message box. Uses private cookies for a session-based authentication.

  • databases - Implements a CRUD-like "blog" JSON API backed by a SQLite database driven by each of sqlx, diesel, and rusqlite. Runs migrations automatically for the former two drivers. Uses contrib database support for the latter two drivers.

  • error-handling - Exhibits the use of scoped catchers; contains commented out lines that will cause a launch-time error with code to custom-display the error.

  • fairings - Exemplifies creating a custom Counter fairing and using AdHoc fairings.

  • forms - Showcases all of Rocket's form support features including multipart file uploads, ad-hoc validations, field renaming, and use of form context for staged forms.

  • hello - Basic example of Rocket's core features: route declaration with path and query parameters, both simple and compound, mounting, launching, testing, and returning simple responses. Also showcases using UTF-8 in route declarations and responses.

  • manual-routing - An example eschewing Rocket's codegen in favor of manual routing. This should be seen as last-ditch effort, much like unsafe in Rust, as manual routing also eschews many of Rocket's automatic web security guarantees.

  • responders - Illustrates the use of many of Rocket's built-in responders: Stream, Redirect, File, NamedFile, content for manually setting Content-Types, and Either. In the process, showcases using TempFile for raw uploads. Also illustrates the creation of a custom, derived Responder.

  • serialization - Showcases JSON and MessagePack (de)serialization support by implementing a CRUD-like message API in JSON and a simply read/echo API in MessagePack. Showcases UUID parsing support.

  • state - Illustrates the use of request-local state and managed state. Uses request-local state to cache "expensive" per-request operations. Uses managed state to implement a simple index hit counter. Also uses managed state to store, retrieve, and push/pop from a concurrent queue.

  • static-files - Uses FileServer to serve static files. Also creates a second manual yet safe version.

  • templating - Illustrates using contrib templates support with identical examples for handlebars and tera.

  • testing - Uses Rocket's local libraries to test an application. Showcases necessary use of the async Client. Note that all examples contains tests, themselves serving as examples for how to test Rocket applications.

  • tls - Illustrates configuring TLS with a variety of key pair kinds.