Bump minimum Rust to 1.33

This commit is contained in:
Joonas Javanainen 2019-06-27 19:06:08 +03:00
parent 9516e622be
commit 9c2302ff8f
No known key found for this signature in database
GPG Key ID: D39CCA5CB19B9179
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ rust:
- stable - stable
- beta - beta
- nightly - nightly
- 1.31.0 - 1.33.0
os: os:
- linux - linux
- osx - osx

View File

@ -2,7 +2,7 @@
**Still fairly experimental!** **Still fairly experimental!**
Minimum Rust version: 1.31 Minimum Rust version: 1.33
Wrapped Dear ImGui version: 1.66b Wrapped Dear ImGui version: 1.66b

View File

@ -90,7 +90,7 @@ pub fn generate_bindings<P: AsRef<Path>>(cimgui_path: &P) -> Result<Bindings, Er
.raw_line("#![allow(non_snake_case)]") .raw_line("#![allow(non_snake_case)]")
.raw_line("#![allow(clippy::all)]") .raw_line("#![allow(clippy::all)]")
.header_contents("cimgui.h", &header) .header_contents("cimgui.h", &header)
.rust_target(RustTarget::Stable_1_28) .rust_target(RustTarget::Stable_1_33)
.default_enum_style(EnumVariation::Consts) .default_enum_style(EnumVariation::Consts)
.prepend_enum_name(false) .prepend_enum_name(false)
.generate_comments(false) .generate_comments(false)