Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
twistedfall committed Dec 1, 2024
1 parent 271f938 commit b22dfa4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/twistedfall/opencv-rust"
readme = "README.md"
keywords = ["opencv", "vision"]
license = "MIT"
version = "0.93.4"
version = "0.93.5"
edition = "2021"
rust-version = "1.66"
authors = ["Pro <[email protected]>", "Mathieu Poumeyrol <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ generation) are installed in your system.
Update your Cargo.toml

```toml
opencv = "0.93.4"
opencv = "0.93.5"
```

Import prelude
Expand Down
4 changes: 2 additions & 2 deletions docs/hub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,6 @@ pub mod hub_prelude {

mod ffi_exports {
use crate::mod_prelude_sys::*;
#[no_mangle] unsafe extern "C" fn ocvrs_create_string_0_93_4(s: *const c_char) -> *mut String { crate::templ::ocvrs_create_string(s) }
#[no_mangle] unsafe extern "C" fn ocvrs_create_byte_string_0_93_4(v: *const u8, len: size_t) -> *mut Vec<u8> { crate::templ::ocvrs_create_byte_string(v, len) }
#[no_mangle] unsafe extern "C" fn ocvrs_create_string_0_93_5(s: *const c_char) -> *mut String { crate::templ::ocvrs_create_string(s) }
#[no_mangle] unsafe extern "C" fn ocvrs_create_byte_string_0_93_5(v: *const u8, len: size_t) -> *mut Vec<u8> { crate::templ::ocvrs_create_byte_string(v, len) }
}

0 comments on commit b22dfa4

Please sign in to comment.