File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change
1
+ * 0.93.1
2
+ * Fix 0.93.0 regression: https://github.com/twistedfall/opencv-rust/issues/620 .
3
+ * Allow combining several versions of the crate as dependencies, fixes https://github.com/twistedfall/opencv-rust/issues/597 .
4
+
1
5
* 0.93.0
2
6
* Improve automatic slice detection, e.g. ` CommandParser::new() ` now calculates ` argc ` automatically.
3
7
* ` find_circles_grid ` now can take ` None ` the ` blob_detector ` argument.
Original file line number Diff line number Diff line change @@ -267,3 +267,9 @@ pub mod hub_prelude {
267
267
#[ cfg( ocvrs_has_module_xphoto) ]
268
268
pub use super :: xphoto:: prelude:: * ;
269
269
}
270
+
271
+ mod ffi_exports {
272
+ use crate :: mod_prelude_sys:: * ;
273
+ #[ no_mangle] unsafe extern "C" fn ocvrs_create_string_0_93_0 ( s : * const c_char ) -> * mut String { crate :: templ:: ocvrs_create_string ( s) }
274
+ #[ no_mangle] unsafe extern "C" fn ocvrs_create_byte_string_0_93_0 ( v : * const u8 , len : size_t ) -> * mut Vec < u8 > { crate :: templ:: ocvrs_create_byte_string ( v, len) }
275
+ }
You can’t perform that action at this time.
0 commit comments