File tree 4 files changed +10
-10
lines changed
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ispc"
3
- version = " 1.0.2 "
3
+ version = " 1.0.3 "
4
4
authors = [
" Will Usher <[email protected] >" ]
5
5
homepage = " https://github.com/Twinklebear/ispc-rs"
6
6
documentation = " http://www.willusher.io/ispc-rs/ispc/"
@@ -24,6 +24,6 @@ exclude = [
24
24
]
25
25
26
26
[dependencies ]
27
- ispc_compile = { path = " ./compile/" , version = " 1.0.2 " }
27
+ ispc_compile = { path = " ./compile/" , version = " 1.0.3 " }
28
28
ispc_rt = { path = " ./runtime/" , version = " 1.0.1" }
29
29
Original file line number Diff line number Diff line change @@ -52,10 +52,10 @@ compile time dependency
52
52
build = " build.rs"
53
53
54
54
[dependencies ]
55
- ispc = " 1.0.2 "
55
+ ispc = " 1.0.3 "
56
56
57
57
[build-dependencies ]
58
- ispc = " 1.0.2 "
58
+ ispc = " 1.0.3 "
59
59
```
60
60
61
61
Now you can use ` ispc ` to compile your code into a static library:
@@ -123,7 +123,7 @@ ispc_rt = "1.0.1"
123
123
124
124
[build-dependencies ]
125
125
ispc_rt = " 1.0.1"
126
- ispc_compile = { "1.0.2 ", optional = true }
126
+ ispc_compile = { "1.0.3 ", optional = true }
127
127
128
128
[features ]
129
129
ispc = [" ispc_compile" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ispc_compile"
3
- version = " 1.0.2 "
3
+ version = " 1.0.3 "
4
4
authors = [
" Will Usher <[email protected] >" ]
5
5
homepage = " https://github.com/Twinklebear/ispc-rs"
6
6
documentation = " http://www.willusher.io/ispc-rs/ispc/"
@@ -25,7 +25,7 @@ exclude = [
25
25
]
26
26
27
27
[dependencies ]
28
- bindgen = " 0.47 "
28
+ bindgen = " 0.46.0 "
29
29
gcc = " 0.3.55"
30
30
libc = " 0.2.47"
31
31
regex = " 1.1.0"
Original file line number Diff line number Diff line change 46
46
//! build = "build.rs"
47
47
//!
48
48
//! [dependencies]
49
- //! ispc = "1.0.2 "
49
+ //! ispc = "1.0.3 "
50
50
//!
51
51
//! [build-dependencies]
52
- //! ispc = "1.0.2 "
52
+ //! ispc = "1.0.3 "
53
53
//! ```
54
54
//!
55
55
//! Now you can use `ispc` to compile your code into a static library:
117
117
//!
118
118
//! [build-dependencies]
119
119
//! ispc_rt = "1.0.1"
120
- //! ispc_compile = { "1.0.2 ", optional = true }
120
+ //! ispc_compile = { "1.0.3 ", optional = true }
121
121
//!
122
122
//! [features]
123
123
//! ispc = ["ispc_compile"]
You can’t perform that action at this time.
0 commit comments