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
How can I disable the feature jpeg2k when adding dicom-transfer-syntax-registry as a dependency to my project?
Whatever I try in my Cargo.toml it always adds jpeg2k as a dependency. The dependency comes indeed from dicom-transfer-syntax-registry as shown by cargo tree -i jpeg2k.
Some of my tries:
dicom-transfer-syntax-registry = { version = "0.6.2", default-features = false}
dicom-transfer-syntax-registry = { version = "0.6.2", default-features = false, features = ["rle"]}
dicom-transfer-syntax-registry = { version = "0.6.2", default-features = false, features = []}
dicom-transfer-syntax-registry = { version = "0.6.2", default-features = true}
Thank you, Felix
The text was updated successfully, but these errors were encountered:
This is probably related with #432. You may want to use the upstream version of all DICOM-rs crates until the upcoming version is released, planned this month.
How can I disable the feature
jpeg2k
when addingdicom-transfer-syntax-registry
as a dependency to my project?Whatever I try in my Cargo.toml it always adds
jpeg2k
as a dependency. The dependency comes indeed fromdicom-transfer-syntax-registry
as shown bycargo tree -i jpeg2k
.Some of my tries:
Thank you, Felix
The text was updated successfully, but these errors were encountered: