Skip to content

Commit

Permalink
Fix isal-sys dependency for shared isal (#25)
Browse files Browse the repository at this point in the history
Fix the isal-sys dependency not to use default-features, in order
to support using shared isal.  Otherwise, the default `static` feature
always forces the static library.
  • Loading branch information
mgorny authored Oct 7, 2024
1 parent 846a262 commit 13be242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use-system-isal = ["isal-sys/use-system-isal"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
isal-sys = { path = "isal-sys", version = "0.5.2+496255c" }
isal-sys = { path = "isal-sys", version = "0.5.2+496255c", default-features = false }

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
Expand Down

0 comments on commit 13be242

Please sign in to comment.