(Temporary?) fork of rocket_cors to make sure it's using same rocket version as tenebrous web API.
Go to file
Yong Wen Chua 16b89ab31c Merge pull request #5 from lawliet89/preserve-existing
Preserve existing CORS requests
2017-07-14 15:45:40 +08:00
src Response unit tests 2017-07-14 15:35:44 +08:00
tests Response unit tests 2017-07-14 15:35:44 +08:00
.gitignore First commit 2017-07-13 15:51:04 +08:00
.travis.yml Add .travis.yml 2017-07-13 16:03:36 +08:00
Cargo.toml First commit 2017-07-13 15:51:04 +08:00
LICENSE First commit 2017-07-13 15:51:04 +08:00
README.md Refactor Implementation (#3) 2017-07-14 11:03:45 +08:00
build.rs First commit 2017-07-13 15:51:04 +08:00
rust-toolchain First commit 2017-07-13 15:51:04 +08:00

README.md

rocket_cors

Build Status Dependency Status Repository

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-07-13.

Rocket > 0.3

Rocket > 0.3 is needed. At this moment, 0.3 is not released, and this crate will not be published to Crates.io until Rocket 0.3 is released to Crates.io.

We currently tie this crate to revision aa51fe0 of Rocket.

Installation

To use the latest master branch, for example:

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

Reference