• Stars
    star
    21,308
  • Rank 1,085 (Top 0.03 %)
  • Language
    Rust
  • License
    Other
  • Created about 8 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A web framework for Rust.

Rocket

Build Status Rocket Homepage Current Crates.io Version Matrix: #rocket:mozilla.org IRC: #rocket on irc.libera.chat

Rocket is an async web framework for Rust with a focus on usability, security, extensibility, and speed.

#[macro_use] extern crate rocket;

#[get("/<name>/<age>")]
fn hello(name: &str, age: u8) -> String {
    format!("Hello, {} year old named {}!", age, name)
}

#[launch]
fn rocket() -> _ {
    rocket::build().mount("/hello", routes![hello])
}

Visiting localhost:8000/hello/John/58, for example, will trigger the hello route resulting in the string Hello, 58 year old named John! being sent to the browser. If an <age> string was passed in that can't be parsed as a u8, the route won't get called, resulting in a 404 error.

Documentation

Rocket is extensively documented:

The official community support channels are #rocket:mozilla.org on Matrix and the bridged #rocket IRC channel on Libera.Chat at irc.libera.chat. We recommend joining us on Matrix via Element. If your prefer IRC, you can join via the Kiwi IRC client or a client of your own.

Examples

An extensive number of examples are provided in the examples/ directory. Each example can be compiled and run with Cargo. For instance, the following sequence of commands builds and runs the Hello, world! example:

cd examples/hello
cargo run

You should see Hello, world! by visiting http://localhost:8000.

Building and Testing

The core directory contains the three core libraries: lib, codegen, and http published as rocket, rocket_codegen and rocket_http, respectively. The latter two are implementations details and are reexported from rocket.

Testing

Rocket's complete test suite can be run with ./scripts/test.sh from the root of the source tree. The script builds and tests all libraries and examples in all configurations. It accepts the following flags:

  • --examples: tests all examples in examples/
  • --contrib: tests each contrib library and feature individually
  • --core: tests each core/lib feature individually
  • --benchmarks: runs all benchmarks
  • --all: runs all tests in all configurations

Additionally, a +${toolchain} flag, where ${toolchain} is a valid rustup toolchain string, can be passed as the first parameter. The flag is forwarded to cargo commands. Any other extra parameters are passed directly to cargo.

To test crates individually, simply run cargo test --all-features in the crate's directory.

Codegen Testing

Code generation diagnostics are tested using trybuild; tests can be found in the codegen/tests/ui-fail directories of respective codegen crates. Each test is symlinked into sibling ui-fail-stable and ui-fail-nightly directories which contain the expected error output for stable and nightly compilers, respectively. To update codegen test UI output, run a codegen test suite with TRYBUILD=overwrite and inspect the diff of .std* files.

API Docs

API documentation is built with ./scripts/mk-docs.sh. The resulting assets are uploaded to api.rocket.rs.

Documentation for a released version ${x} can be found at https://api.rocket.rs/v${x} and https://rocket.rs/v${x}. For instance, the documentation for 0.4 can be found at https://api.rocket.rs/v0.4 and https://rocket.rs/v0.4. Documentation for unreleased versions in branch ${branch} be found at https://api.rocket.rs/${branch} and https://rocket.rs/${branch}. For instance, the documentation for the master branch can be found at https://api.rocket.rs/master and https://rocket.rs/master. Documentation for unreleased branches is updated periodically.

Contributing

Contributions are absolutely, positively welcome and encouraged! Contributions come in many forms. You could:

  1. Submit a feature request or bug report as an issue.
  2. Ask for improved documentation as an issue.
  3. Comment on issues that require feedback.
  4. Contribute code via pull requests.

We aim to keep Rocket's code quality at the highest level. This means that any code you contribute must be:

  • Commented: Complex and non-obvious functionality must be properly commented.
  • Documented: Public items must have doc comments with examples, if applicable.
  • Styled: Your code's style should match the existing and surrounding code style.
  • Simple: Your code should accomplish its task as simply and idiomatically as possible.
  • Tested: You must write (and pass) convincing tests for any new functionality.
  • Focused: Your code should do what it's supposed to and nothing more.

All pull requests are code reviewed and tested by the CI. Note that unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Rocket by you shall be dual licensed under the MIT License and Apache License, Version 2.0, without any additional terms or conditions.

License

Rocket is licensed under either of the following, at your option:

The Rocket website docs are licensed under separate terms.

More Repositories

1

Figment

A hierarchical configuration library so con-free, it's unreal.
Rust
315
star
2

cookie-rs

HTTP cookie parsing and cookie jar management for Rust.
Rust
263
star
3

yansi

A dead simple ANSI terminal color painting library for Rust.
Rust
188
star
4

state

A Rust library for safe and effortless global and thread-local state management.
Rust
185
star
5

RustFS

A virtual file system written in Rust.
Rust
128
star
6

homebrew-osxct

OS X Cross Compilers
Ruby
102
star
7

Pear

A pear is a fruit.
Rust
46
star
8

version_check

Rust library for checking the installed/running rustc's version.
Rust
45
star
9

ubyte

A simple, complete, const-everything, saturating, human-friendly, no_std Rust library for byte units.
Rust
24
star
10

proc-macro-starter

Starter code for writing procedural macros in Rust.
Rust
17
star
11

uncased

Case-preserving, ASCII case-insensitive `no_std` string types for Rust.
Rust
11
star
12

Devise

Library for devising derives and other procedural macros.
Rust
8
star
13

proc-macro2-diagnostics

Diagnostics for stable and nightly proc-macros!
Rust
7
star
14

rocket-latam-workshop

Rocket workshop repository for Rust LATAM.
Rust
6
star
15

rktpb

A pastebin that does just enough to be really useful.
Rust
5
star
16

bower-send

A simple multi-account mail sending script designed for Bower.
Python
2
star
17

stable-pattern

Stable, no_std port of std::str::pattern, Rust 1.52.
Rust
2
star
18

GoFS

A virtual file system written in Go.
C
2
star
19

native_versioning

An experiment for simple versioning of C, C++, and assembly symbols in Rust code.
Rust
2
star
20

Linux-AutoGC

Python
1
star