mirror of
https://github.com/rwf2/Rocket.git
synced 2024-12-31 23:02:37 +00:00
50bc0d6999
Here's the idea: under the `Rocket` namespace should live things critical to writing simple Rocket apps: Request, Response, Error, etc. Nothing should be nested more than one level deep. Only items required for more complex things (implementing uncommon traits, etc.) should be nested one level deep. This commit is the first attempt at realizing this.
9 lines
180 B
TOML
9 lines
180 B
TOML
[package]
|
|
name = "redirect"
|
|
version = "0.0.1"
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../lib" }
|
|
rocket_macros = { path = "../../macros" }
|