Skip to content

Commit 2fa13e6

Browse files
committed
Revert bindgen to 0.46.0 to resolve issue #8
1 parent ad3d01c commit 2fa13e6

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ispc"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
authors = ["Will Usher <[email protected]>"]
55
homepage = "https://github.com/Twinklebear/ispc-rs"
66
documentation = "http://www.willusher.io/ispc-rs/ispc/"
@@ -24,6 +24,6 @@ exclude = [
2424
]
2525

2626
[dependencies]
27-
ispc_compile = { path = "./compile/", version = "1.0.2" }
27+
ispc_compile = { path = "./compile/", version = "1.0.3" }
2828
ispc_rt = { path = "./runtime/", version = "1.0.1" }
2929

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ compile time dependency
5252
build = "build.rs"
5353

5454
[dependencies]
55-
ispc = "1.0.2"
55+
ispc = "1.0.3"
5656

5757
[build-dependencies]
58-
ispc = "1.0.2"
58+
ispc = "1.0.3"
5959
```
6060

6161
Now you can use `ispc` to compile your code into a static library:
@@ -123,7 +123,7 @@ ispc_rt = "1.0.1"
123123

124124
[build-dependencies]
125125
ispc_rt = "1.0.1"
126-
ispc_compile = { "1.0.2", optional = true }
126+
ispc_compile = { "1.0.3", optional = true }
127127

128128
[features]
129129
ispc = ["ispc_compile"]

compile/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ispc_compile"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
authors = ["Will Usher <[email protected]>"]
55
homepage = "https://github.com/Twinklebear/ispc-rs"
66
documentation = "http://www.willusher.io/ispc-rs/ispc/"
@@ -25,7 +25,7 @@ exclude = [
2525
]
2626

2727
[dependencies]
28-
bindgen = "0.47"
28+
bindgen = "0.46.0"
2929
gcc = "0.3.55"
3030
libc = "0.2.47"
3131
regex = "1.1.0"

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@
4646
//! build = "build.rs"
4747
//!
4848
//! [dependencies]
49-
//! ispc = "1.0.2"
49+
//! ispc = "1.0.3"
5050
//!
5151
//! [build-dependencies]
52-
//! ispc = "1.0.2"
52+
//! ispc = "1.0.3"
5353
//! ```
5454
//!
5555
//! Now you can use `ispc` to compile your code into a static library:
@@ -117,7 +117,7 @@
117117
//!
118118
//! [build-dependencies]
119119
//! ispc_rt = "1.0.1"
120-
//! ispc_compile = { "1.0.2", optional = true }
120+
//! ispc_compile = { "1.0.3", optional = true }
121121
//!
122122
//! [features]
123123
//! ispc = ["ispc_compile"]

0 commit comments

Comments
 (0)