Skip to content

Commit

Permalink
bindgen: 0.54
Browse files Browse the repository at this point in the history
Default nginx: 1.19.0

Update version to 0.8.0
  • Loading branch information
yaa110 committed Jun 6, 2020
1 parent 5eaa7f8 commit e086ac7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nginx"
version = "0.7.1"
version = "0.8.0"
authors = ["Navid <yaa110@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand All @@ -18,4 +18,4 @@ crate-type = ["staticlib", "rlib"]
travis-ci = { repository = "arvancloud/nginx-rs" }

[build-dependencies]
bindgen = "0.53"
bindgen = "0.54"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# nginx-rs

[![crates.io](https://img.shields.io/crates/v/nginx.svg)](https://crates.io/crates/nginx) [![Documentation](https://img.shields.io/badge/Docs-nginx-blue.svg)](https://arvancloud.github.io/nginx-rs) [![Build Status](https://travis-ci.org/arvancloud/nginx-rs.svg?branch=master)](https://travis-ci.org/arvancloud/nginx-rs) ![Crates.io](https://img.shields.io/crates/l/rustc-serialize.svg) ![Nginx](https://img.shields.io/badge/Nginx-1.17.9-orange.svg)
[![crates.io](https://img.shields.io/crates/v/nginx.svg)](https://crates.io/crates/nginx) [![Documentation](https://img.shields.io/badge/Docs-nginx-blue.svg)](https://arvancloud.github.io/nginx-rs) [![Build Status](https://travis-ci.org/arvancloud/nginx-rs.svg?branch=master)](https://travis-ci.org/arvancloud/nginx-rs) ![Crates.io](https://img.shields.io/crates/l/rustc-serialize.svg) ![Nginx](https://img.shields.io/badge/nginx-1.19.0-orange.svg)

This crate provides [nginx](https://nginx.org/) bindings for Rust. Currently, only Linux is supported.

Expand All @@ -10,7 +10,7 @@ This crate provides [nginx](https://nginx.org/) bindings for Rust. Currently, on

```toml
[dependencies]
nginx = "0.7"
nginx = "0.8"
```

**Note:** In order to build the crate, `clang` must be installed.
Expand Down
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::io::Result;
use std::path::{Path, PathBuf};
use std::process::Command;

const NGINX_VERSION: &'static str = "1.17.9";
const NGINX_VERSION: &'static str = "1.19.0";

fn run_make(rule: &str, cwd: &Path, local_nginx_path: &str) -> Result<bool> {
let output = Command::new("make")
Expand Down

0 comments on commit e086ac7

Please sign in to comment.