forked from GeorgeScrivener/rocket_cors
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix build issues for Rocket 0.4.2 (lawliet89#70)
- Fix clippy lints - Bump minimum Rust version beyond Rocket required for - `std::mem::MaybeUninit` (cf. rust-lang/rust#60445) - `alloc` crate
- Loading branch information
Showing
6 changed files
with
26 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rocket_cors" | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
license = "MIT/Apache-2.0" | ||
authors = ["Yong Wen Chua <[email protected]>"] | ||
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications" | ||
|
@@ -22,7 +22,7 @@ serialization = ["serde", "serde_derive", "unicase_serde"] | |
|
||
[dependencies] | ||
regex = "1.1" | ||
rocket = { version = "0.4.0", default-features = false } | ||
rocket = { version = "0.4.2", default-features = false } | ||
log = "0.3" | ||
unicase = "2.0" | ||
url = "1.7.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters