Skip to content

Commit

Permalink
bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flier committed Apr 11, 2022
1 parent 401f84d commit cef4aeb
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion hyperscan-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ links = "hs"
name = "hyperscan-sys"
readme = "../README.md"
repository = "https://github.com/flier/rust-hyperscan"
version = "0.2.2"
version = "0.3.0"

[features]
chimera = ["static"]
Expand Down
8 changes: 6 additions & 2 deletions hyperscan-sys/src/chimera.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* automatically generated by rust-bindgen 0.58.1 */
/* automatically generated by rust-bindgen 0.59.2 */

pub const CH_SUCCESS: u32 = 0;
pub const CH_INVALID: i32 = -1;
Expand Down Expand Up @@ -354,7 +354,11 @@ fn bindgen_test_layout_ch_compile_error() {
}
impl Default for ch_compile_error {
fn default() -> Self {
unsafe { ::core::mem::zeroed() }
let mut s = ::core::mem::MaybeUninit::<Self>::uninit();
unsafe {
::core::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[doc = " A type containing error details that is returned by the compile calls (@ref"]
Expand Down
8 changes: 6 additions & 2 deletions hyperscan-sys/src/hyperscan.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* automatically generated by rust-bindgen 0.58.1 */
/* automatically generated by rust-bindgen 0.59.2 */

pub const HS_MAJOR: u32 = 5;
pub const HS_MINOR: u32 = 4;
Expand Down Expand Up @@ -555,7 +555,11 @@ fn bindgen_test_layout_hs_compile_error() {
}
impl Default for hs_compile_error {
fn default() -> Self {
unsafe { ::core::mem::zeroed() }
let mut s = ::core::mem::MaybeUninit::<Self>::uninit();
unsafe {
::core::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[doc = " A type containing error details that is returned by the compile calls (@ref"]
Expand Down
4 changes: 2 additions & 2 deletions hyperscan/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
name = "hyperscan"
readme = "../README.md"
repository = "https://github.com/flier/rust-hyperscan"
version = "0.2.2"
version = "0.3.0"

[features]
default = ["full", "latest"]
Expand Down Expand Up @@ -44,7 +44,7 @@ semver = "1"
thiserror = "1.0"

futures = {version = "0.3.16", optional = true}
hyperscan-sys = {version = "0.2", path = "../hyperscan-sys"}
hyperscan-sys = {version = "0.3", path = "../hyperscan-sys"}

[dev-dependencies]
anyhow = "1.0"
Expand Down

0 comments on commit cef4aeb

Please sign in to comment.