Pin minimum support at Rust 1.33

No promises about maintaining that, just want to know if/when I do something that breaks it
pull/23/head
Bradlee Speice 2020-01-12 20:26:08 -05:00
parent 27f9a03617
commit 07d336a90c
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@ jobs:
include:
- rust: stable
os: linux
- rust: 1.33.0
os: linux
- rust: stable
os: osx
- rust: stable-msvc

View File

@ -93,7 +93,7 @@ pub fn main() {
println!("cargo:include={}", header_path.display());
let bindings = bindgen::Builder::default()
.clang_arg(&format!("-I{}", header_path.display()))
.clang_arg(format!("-I{}", header_path.display()))
.header("bindings.h")
.whitelist_function("aeron_.*")
.whitelist_type("aeron_.*")