(Temporary?) fork of rocket_cors to make sure it's using same rocket version as tenebrous web API.
Go to file
Yong Wen Chua c99083af5d v0.2.1
- Bumped nightly requirement to at least `nightly-2017-09-26`
- `serde` is now gated behind a feature flag, enabled by default
- Some small cleanup changes
2017-11-06 15:31:05 +08:00
examples Add "mix" mode example (#26) 2017-09-05 14:59:51 +08:00
src v0.2.1 2017-11-06 15:31:05 +08:00
tests Add "mix" mode example (#26) 2017-09-05 14:59:51 +08:00
.gitignore Gate serde behind a feature flag (#25) 2017-09-05 14:11:28 +08:00
.travis.yml Bump nightly version (#28) 2017-10-31 10:46:25 +08:00
Cargo.toml v0.2.1 2017-11-06 15:31:05 +08:00
LICENSE First commit 2017-07-13 15:51:04 +08:00
README.md v0.2.1 2017-11-06 15:31:05 +08:00
build.rs v0.2.1 2017-11-06 15:31:05 +08:00
rust-toolchain Bump nightly version (#28) 2017-10-31 10:46:25 +08:00

README.md

rocket_cors

Build Status Dependency Status Repository Crates.io

Cross-origin resource sharing (CORS) for Rocket applications

Requirements

  • Nightly Rust
  • Rocket >= 0.3

Nightly Rust

Rocket requires nightly Rust. You should probably install Rust with rustup, then override the code directory to use nightly instead of stable. See installation instructions.

In particular, rocket_cors is currently targetted for nightly-2017-09-26. Newer nightlies might work, but it's not guaranteed.

Installation

Add the following to Cargo.toml:

rocket_cors = "0.2.1"

To use the latest master branch, for example:

rocket_cors = { git = "https://github.com/lawliet89/rocket_cors", branch = "master" }

Reference