Bump to Rocket 0.4.0-rc.2 (#53)
* Bump to Rocket 0.4.0-rc.2 * Update strings * Bump minimum Rust version
This commit is contained in:
parent
02c7fcf519
commit
495317bd9e
|
@ -3,7 +3,7 @@ language: rust
|
||||||
rust:
|
rust:
|
||||||
- nightly
|
- nightly
|
||||||
# Minimum Rust set by Rocket
|
# Minimum Rust set by Rocket
|
||||||
- nightly-2018-10-06
|
- nightly-2018-11-25
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rocket_cors"
|
name = "rocket_cors"
|
||||||
version = "0.4.0-rc.2"
|
version = "0.4.0-rc.3"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
authors = ["Yong Wen Chua <me@yongwen.xyz>"]
|
authors = ["Yong Wen Chua <me@yongwen.xyz>"]
|
||||||
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"
|
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"
|
||||||
|
@ -21,7 +21,7 @@ default = ["serialization"]
|
||||||
serialization = ["serde", "serde_derive", "unicase_serde", "url_serde"]
|
serialization = ["serde", "serde_derive", "unicase_serde", "url_serde"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rocket = "0.4.0-rc.1"
|
rocket = "0.4.0-rc.2"
|
||||||
log = "0.3"
|
log = "0.3"
|
||||||
unicase = "2.0"
|
unicase = "2.0"
|
||||||
url = "1.5.1"
|
url = "1.5.1"
|
||||||
|
|
|
@ -31,7 +31,7 @@ work, but they are subject to the minimum that Rocket sets.
|
||||||
Add the following to Cargo.toml:
|
Add the following to Cargo.toml:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
rocket_cors = "0.4.0-rc.2"
|
rocket_cors = "0.4.0-rc.3"
|
||||||
```
|
```
|
||||||
|
|
||||||
To use the latest `master` branch, for example:
|
To use the latest `master` branch, for example:
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
//! Add the following to Cargo.toml:
|
//! Add the following to Cargo.toml:
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! rocket_cors = "0.4.0-rc.2"
|
//! rocket_cors = "0.4.0-rc.3"
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
//! To use the latest `master` branch, for example:
|
//! To use the latest `master` branch, for example:
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
//! your `Cargo.toml` to:
|
//! your `Cargo.toml` to:
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! rocket_cors = { version = "0.4.0-rc.2", default-features = false }
|
//! rocket_cors = { version = "0.4.0-rc.3", default-features = false }
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
//! ## Usage
|
//! ## Usage
|
||||||
|
|
Loading…
Reference in New Issue