Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ debug = 0
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# rust 1.96 use llvm 1.22 (bitcode) while Mac does not have support for it
lto = false
#lto = "thin"

[workspace.lints.clippy]
result_large_err = "allow"
Expand Down
14 changes: 14 additions & 0 deletions dist-workspace.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ github-attestations = true
# Path that installers should place binaries in
install-path = "CARGO_HOME"
github-build-setup = "../parts/build-setup.yml"
precise-builds = true

[dist.github-custom-runners]
global = "ubuntu-latest"
Expand All @@ -36,3 +37,16 @@ x86_64-apple-darwin = "macos-latest"
x86_64-unknown-linux-gnu = "ubuntu-latest"
x86_64-unknown-linux-musl = "ubuntu-latest"
x86_64-pc-windows-msvc = "windows-2025"

[dist.dependencies.apt]
libudev1 = '*'
libssl-dev = '*'
librust-libudev-sys-dev = '*'
musl-tools = '*'

[dist.dependencies.homebrew]
openssl = '*'
pkg-config = '*'

[dist.dependencies.chocolatey]
openssl = '*'
Loading