Skip to content

Commit

Permalink
lower osx deployment target to 10.12
Browse files Browse the repository at this point in the history
  • Loading branch information
sonodima committed Oct 3, 2024
1 parent fc981b7 commit 82f4e0f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion blurthing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blurthing"
version = "1.3.1"
version = "1.3.2"
edition = "2021"
authors = ["Tommaso Dimatore <[email protected]>"]
description = "Simplify the process of computing BlurHashes from images."
Expand Down
3 changes: 3 additions & 0 deletions blurthing/build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("cargo:rustc-env=MACOSX_DEPLOYMENT_TARGET=10.12");
}
1 change: 1 addition & 0 deletions xtask/src/bundle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ fn macos_settings(workspace_dir: &Path) -> MacOsSettings {
let license_path = workspace_dir.join("assets").join(LICENSE_FILE);

MacOsSettings {
minimum_system_version: Some("10.12".into()), // MACOSX_DEPLOYMENT_TARGET - blurthing/build.rs
license: Some(license_path.to_string_lossy().into()),
signing_identity: Some("-".into()), // ad-hoc signing
..Default::default()
Expand Down

0 comments on commit 82f4e0f

Please sign in to comment.