Skip to content

Commit 70b0227

Browse files
committed
Release 0.1.1
1 parent d386cd3 commit 70b0227

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ exclude = [
88
]
99

1010
[workspace.package]
11-
version = "0.1.0"
11+
version = "0.1.1"
1212
edition = "2021"
1313
license = "bzip2-1.0.6"
1414
repository = "https://github.com/trifectatechfoundation/libbzip2-rs"
1515
homepage = "https://github.com/trifectatechfoundation/libbzip2-rs"
1616
readme = "./README.md"
17-
description = "a drop-in compatible rust bzip2 implementation"
17+
description = "a drop-in compatible rust bzip2 implementation"
1818
publish = true
1919
rust-version = "1.82" # MSRV
2020

@@ -24,7 +24,7 @@ libbz2-rs-sys = { path = "libbz2-rs-sys/", default-features = false }
2424

2525
[package]
2626
name = "libbzip2-rs"
27-
readme.workspace = true
27+
readme.workspace = true
2828
description.workspace = true
2929
version.workspace = true
3030
edition.workspace = true

libbz2-rs-sys-cdylib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libbz2-rs-sys-cdylib"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
license = "bzip2-1.0.6"
66
repository = "https://github.com/trifectatechfoundation/libbzip2-rs"
@@ -23,7 +23,7 @@ custom-prefix = ["libbz2-rs-sys/custom-prefix"] # use the LIBBZ2_RS_SYS_PREFIX t
2323
capi = []
2424

2525
[dependencies]
26-
libbz2-rs-sys = { version = "0.1.0", path = "../libbz2-rs-sys", default-features = false, features = ["c-allocator"] }
26+
libbz2-rs-sys = { version = "0.1.1", path = "../libbz2-rs-sys", default-features = false, features = ["c-allocator"] }
2727
libc = "0.2"
2828

2929
[package.metadata.capi.library]

libbz2-rs-sys/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ fn handle_assert_failure(errcode: c_int) -> ! {
151151
// Stash the assertion code for the panic handler in the cdylib to pass to bz_internal_error.
152152
// Using relaxed ordering as this will be accessed on the same thread.
153153
#[cfg(not(feature = "std"))]
154+
#[allow(clippy::unnecessary_cast)]
154155
ASSERT_CODE.store(errcode as i32, Ordering::Relaxed);
155156
#[cfg(not(feature = "std"))]
156157
panic!("{}", AssertFail(errcode));

test-libbz2-rs-sys/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "test-libbz2-rs-sys"
33
readme = "README.md"
4-
# description.workspace = true
5-
# version.workspace = true
4+
description = "testing libbz2-rs-sys"
5+
version.workspace = true
66
edition.workspace = true
7-
# license.workspace = true
8-
# repository.workspace = true
9-
# homepage.workspace = true
10-
# publish.workspace = true
11-
# rust-version.workspace = true
7+
license.workspace = true
8+
repository.workspace = true
9+
homepage.workspace = true
10+
rust-version.workspace = true
11+
publish = false
1212

1313
[dependencies]
1414
bzip2-sys = { version = "0.1.11", features = ["static"] }

0 commit comments

Comments
 (0)