Skip to content

Commit f7ebeeb

Browse files
committed
0.45.0 Regenerate bindings
1 parent cb90953 commit f7ebeeb

File tree

18 files changed

+5976
-15
lines changed

18 files changed

+5976
-15
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* 0.45.0
2+
* Add implementation of `From<Vec<T>>` for `Vector<T>` + misc vector improvements
3+
* Enable OpenGL functions and classes from the `core` module
4+
15
* 0.44.2
26
* Fix building with Apple clang
37
* Show libclang diagnostics during binding generation

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repository = "https://github.com/twistedfall/opencv-rust"
66
readme = "README.md"
77
keywords = ["opencv", "vision"]
88
license = "MIT"
9-
version = "0.44.2"
9+
version = "0.45.0"
1010
edition = "2018"
1111
authors = ["Mathieu Poumeyrol <[email protected]>", "Pro <[email protected]>"]
1212
autoexamples = false # cuda example doesn't compile on just any system
@@ -57,7 +57,7 @@ contrib = []
5757
docs-only = []
5858

5959
[build-dependencies]
60-
binding-generator = { package = "opencv-binding-generator", version = "0.18.0", path = "binding-generator", optional = true }
60+
binding-generator = { package = "opencv-binding-generator", version = "0.19.0", path = "binding-generator", optional = true }
6161
cc = { version = "1.0", features = ["parallel"] }
6262
clang = { version = "0.24", features = ["clang_6_0"], optional = true }
6363
glob = "0.3"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ Make sure the supported OpenCV version (3.2, 3.4 or 4.x) is installed in your sy
1414

1515
Update your Cargo.toml
1616
```toml
17-
opencv = "0.44"
17+
opencv = "0.45"
1818
```
1919

2020
Select OpenCV version if different from default (opencv-4) in Cargo.toml:
2121
```toml
22-
opencv = {version = "0.44", default-features = false, features = ["opencv-34", "buildtime-bindgen"]}
22+
opencv = {version = "0.45", default-features = false, features = ["opencv-34", "buildtime-bindgen"]}
2323
```
2424

2525
Or enable usage of `contrib` modules:
2626
```toml
27-
opencv = {version = "0.44", features = ["contrib"]}
27+
opencv = {version = "0.45", features = ["contrib"]}
2828
```
2929

3030
Import prelude

binding-generator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "opencv-binding-generator"
33
description = "Binding generator for opencv crate"
44
repository = "https://github.com/twistedfall/opencv-rust"
5-
version = "0.18.0"
5+
version = "0.19.0"
66
license = "MIT"
77
authors = ["Pro <[email protected]>"]
88
edition = "2018"

0 commit comments

Comments
 (0)