Vulnerabilities | |||||
---|---|---|---|---|---|
Version | Suggest | Low | Medium | High | Critical |
0.5.1 | 0 | 0 | 0 | 0 | 0 |
0.5.0 | 0 | 0 | 0 | 0 | 0 |
0.4.11 | 0 | 0 | 0 | 0 | 0 |
0.4.10 | 0 | 0 | 0 | 0 | 0 |
0.4.9 | 0 | 0 | 0 | 0 | 0 |
0.4.8 | 0 | 0 | 0 | 0 | 0 |
0.4.7 | 0 | 0 | 0 | 0 | 0 |
0.4.6 | 0 | 0 | 1 | 0 | 0 |
0.4.5 | 0 | 0 | 1 | 0 | 0 |
0.4.4 | 0 | 0 | 2 | 0 | 0 |
0.4.3 | 0 | 0 | 2 | 0 | 0 |
0.4.2 | 0 | 0 | 2 | 0 | 0 |
0.4.1 | 0 | 0 | 2 | 0 | 0 |
0.4.0 | 0 | 0 | 2 | 0 | 0 |
0.3.17 | 0 | 0 | 1 | 0 | 0 |
0.3.16 | 0 | 0 | 1 | 0 | 0 |
0.3.15 | 0 | 0 | 1 | 0 | 0 |
0.3.14 | 0 | 0 | 1 | 0 | 0 |
0.3.13 | 0 | 0 | 1 | 0 | 0 |
0.3.12 | 0 | 0 | 1 | 0 | 0 |
0.3.11 | 0 | 0 | 1 | 0 | 0 |
0.3.10 | 0 | 0 | 1 | 0 | 0 |
0.3.9 | 0 | 0 | 1 | 0 | 0 |
0.3.8 | 0 | 0 | 1 | 0 | 0 |
0.3.7 | 0 | 0 | 1 | 0 | 0 |
0.3.6 | 0 | 0 | 1 | 0 | 0 |
0.3.5 | 0 | 0 | 1 | 0 | 0 |
0.3.4 | 0 | 0 | 1 | 0 | 0 |
0.3.3 | 0 | 0 | 1 | 0 | 0 |
0.3.2 | 0 | 0 | 1 | 0 | 0 |
0.3.1 | 0 | 0 | 1 | 0 | 0 |
0.3.0 | 0 | 0 | 1 | 0 | 0 |
0.2.11 | 0 | 0 | 1 | 0 | 0 |
0.2.10 | 0 | 0 | 1 | 0 | 0 |
0.2.9 | 0 | 0 | 1 | 0 | 0 |
0.2.8 | 0 | 0 | 1 | 0 | 0 |
0.2.7 | 0 | 0 | 1 | 0 | 0 |
0.2.6 | 0 | 0 | 1 | 0 | 0 |
0.2.5 | 0 | 0 | 1 | 0 | 0 |
0.2.4 | 0 | 0 | 1 | 0 | 0 |
0.2.3 | 0 | 0 | 1 | 0 | 0 |
0.2.2 | 0 | 0 | 1 | 0 | 0 |
0.2.1 | 0 | 0 | 1 | 0 | 0 |
0.2.0 | 0 | 0 | 1 | 0 | 0 |
0.1.6 | 0 | 0 | 1 | 0 | 0 |
0.1.5 | 0 | 0 | 1 | 0 | 0 |
0.1.4 | 0 | 0 | 1 | 0 | 0 |
0.1.3 | 0 | 0 | 1 | 0 | 0 |
0.1.2 | 0 | 0 | 1 | 0 | 0 |
0.1.1 | 0 | 0 | 1 | 0 | 0 |
0.1.0 | 0 | 0 | 1 | 0 | 0 |
0.5.1 - This version is safe to use because it has no known security vulnerabilities at this time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
Apache-2.0 - Apache License 2.0Rocket 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.
Rocket is extensively documented:
Documentation for the master
branch is available at https://rocket.rs/master
and https://api.rocket.rs/master.
Documentation for major release version ${x}
is available at
https://[api.]rocket.rs/v${x}
. For example, the v0.4 docs are available at
https://rocket.rs/v0.4 and https://api.rocket.rs/v0.4.
Finally, API docs for active git branches are available at
https://api.rocket.rs/${branch}
. For example, API docs for the master
branch
are available at https://api.rocket.rs/master. Branch rustdocs are built and
deployed on every commit.
The examples directory contains complete crates that showcase
Rocket's features and usage. Each example can be compiled and run with Cargo.
For instance, the following sequence of commands builds and runs the hello
example:
cd examples/hello
cargo run
If you find yourself needing help outside of the documentation, you may:
#rocket:mozilla.org
on Matrix (join via Element).Contributions are absolutely, positively welcomed and encouraged! If you're interested in contributing code, please first read CONTRIBUTING for complete guidelines. Additionally, you could:
Rocket is licensed under either of the following, at your option:
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.
The Rocket website docs are licensed under separate terms. Any contribution intentionally submitted for inclusion in the Rocket website docs by you shall be licensed under those terms.