-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated zlib - Use latest openssl-sys for armv6 again - updated GHA Libs
- Loading branch information
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[package] | ||
authors = ["BlackDex <[email protected]>"] | ||
name = "multicrate" | ||
version = "0.4.1" | ||
version = "0.4.2" | ||
edition = "2021" | ||
resolver = "2" | ||
|
||
[features] | ||
default = [] | ||
vendored_openssl = ["openssl/vendored"] | ||
|
||
[target.arm-unknown-linux-musleabi.dependencies.openssl-sys] | ||
version = "=0.9.92" # Fixed to v0.9.92 to prevent building issues with armv6 | ||
# [target.arm-unknown-linux-musleabi.dependencies.openssl-sys] | ||
# version = "=0.9.92" # Fixed to v0.9.92 to prevent building issues with armv6 | ||
|
||
[dependencies] | ||
# Make sure OpenSSL gets build, needed for Diesel, Curl and OpenSSL tests | ||
|
@@ -47,9 +47,9 @@ features = ["zlib"] | |
# Strip symbols from the release builds | ||
# https://doc.rust-lang.org/stable/rustc/codegen-options/index.html#strip | ||
# https://doc.rust-lang.org/stable/cargo/reference/profiles.html#strip | ||
# Also enable thin LTO for some optimizations | ||
# Also enable fat LTO for some optimizations | ||
# https://doc.rust-lang.org/stable/rustc/codegen-options/index.html#lto | ||
# https://doc.rust-lang.org/stable/cargo/reference/profiles.html#lto | ||
[profile.release] | ||
strip = "symbols" | ||
lto = "thin" | ||
lto = "fat" |