Commit 42ab46a
committed
fix: remove musl target from cargo-dist due to keyring incompatibility
The keyring crate used for secure-storage has native dependencies that don't
work with musl libc. This causes the x86_64-unknown-linux-musl build to fail
when trying to link OpenSSL.
Solutions considered:
1. Disable secure-storage for musl builds (complex configuration)
2. Use vendored OpenSSL (adds build time and complexity)
3. Remove musl target (chosen - simplest)
The x86_64-unknown-linux-gnu target still provides Linux binaries that work
on most distributions. Users needing static binaries can build manually with
--no-default-features --features full.1 parent 5b41bd2 commit 42ab46a
2 files changed
+4
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
37 | | - | |
| 37 | + | |
| 38 | + | |
38 | 39 | | |
39 | 40 | | |
40 | 41 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
| 69 | + | |
| 70 | + | |
69 | 71 | | |
70 | 72 | | |
71 | 73 | | |
| |||
0 commit comments