Skip to content

Commit

Permalink
Fix our xz2 crate configuration to enable static linking.
Browse files Browse the repository at this point in the history
Previously liblzma was dynamically linked (to a homebrew version).

Fixes #172
  • Loading branch information
jsirois committed Nov 22, 2023
1 parent 0be4551 commit b330014
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 0.13.3

Ensure liblzma is statically linked.

## 0.13.2

When `load_dotenv` is requested, propagate errors loading any `.env` file found.
Expand Down
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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [

[package]
name = "scie-jump"
version = "0.13.2"
version = "0.13.3"
description = "The self contained interpreted executable launcher."
authors = [
"John Sirois <john.sirois@gmail.com>",
Expand Down
4 changes: 2 additions & 2 deletions jump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jump"
version = "0.13.2"
version = "0.13.3"
description = "The bulk of the scie-jump binary logic."
authors = [
"John Sirois <john.sirois@gmail.com>",
Expand Down Expand Up @@ -30,7 +30,7 @@ structure = "0.1"
tar = "0.4"
tempfile = { workspace = true }
tuple = "0.5"
xz2 = "0.1"
xz2 = { version = "0.1", features = ["static"] }
zip = { workspace = true }
zstd = "0.12"
walkdir = "2.3"
Expand Down

0 comments on commit b330014

Please sign in to comment.