You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rust-bio/rust-htslib#185 addresses an aspect of this already, but the decision to link statically to most hts-sys dependencies is made in the hts-sys Cargo.toml itself:
openssl-sys = { version = "0.9.56", optional = true }
and cannot be changed from outside.
Wouldn't it be better to remove all "static" feature requests from that section?
For convenience one could add a "static-dependencies" feature to hts-sys, which would make it easy to opt into the current behavior?
The text was updated successfully, but these errors were encountered:
rust-bio/rust-htslib#185 addresses an aspect of this already, but the decision to link statically to most hts-sys dependencies is made in the hts-sys Cargo.toml itself:
hts-sys/Cargo.toml
Lines 19 to 27 in 40496b7
and cannot be changed from outside.
Wouldn't it be better to remove all "static" feature requests from that section?
For convenience one could add a "static-dependencies" feature to hts-sys, which would make it easy to opt into the current behavior?
The text was updated successfully, but these errors were encountered: