Skip to content

Commit

Permalink
fix(build): try to explicitly add libssl-dev as dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswk committed Sep 20, 2024
1 parent 58100a2 commit ec1fd83
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ cargo-dist-version = "0.22.1"
# CI backends to support
ci = "github"
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
targets = [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# The installers to generate for each app
installers = ["shell", "msi"]
# Which actions to run on pull requests
Expand All @@ -25,4 +31,7 @@ install-updater = false
inherits = "release"

[workspace.metadata.dist.dependencies.apt]
gcc-aarch64-linux-gnu = { version = '*', targets = ["aarch64-unknown-linux-gnu" ] }
libssl-dev = { version = '*', targets = ["aarch64-unknown-linux-gnu"] }
gcc-aarch64-linux-gnu = { version = '*', targets = [
"aarch64-unknown-linux-gnu",
] }

0 comments on commit ec1fd83

Please sign in to comment.