Skip to content

Commit 9a073e7

Browse files
committed
Fix release: vendor OpenSSL for cross-compilation, bump to v0.2.1
macOS runners are now arm64, so building for x86_64-apple-darwin is a cross-compile that fails without OpenSSL. Enabling vendored-openssl on git2 bundles it statically.
1 parent a387815 commit 9a073e7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ members = [
66
]
77

88
[workspace.package]
9-
version = "0.2.0"
9+
version = "0.2.1"
1010
edition = "2021"
1111
license = "MIT"
1212
repository = "https://github.com/Rani367/affected"
@@ -15,14 +15,14 @@ rust-version = "1.85"
1515
authors = ["Rani367"]
1616

1717
[workspace.dependencies]
18-
affected-core = { version = "0.2.0", path = "crates/affected-core" }
18+
affected-core = { version = "0.2.1", path = "crates/affected-core" }
1919
anyhow = "1"
2020
serde = { version = "1", features = ["derive"] }
2121
serde_json = "1"
2222
toml = "0.8"
2323
clap = { version = "4", features = ["derive"] }
2424
clap_complete = "4"
25-
git2 = "0.20"
25+
git2 = { version = "0.20", features = ["vendored-openssl"] }
2626
petgraph = "0.7"
2727
colored = "3"
2828
which = "7"

0 commit comments

Comments
 (0)