Eduardo Pinho

Results 254 comments of Eduardo Pinho

Thank you for bringing this up. It appears that the current iteration of `openjp2` does not work on either Windows or macOS. #432 Please check whether the same mitigation strategy...

Would this work? ```toml dicom = { version = "0.6.3", default-features = false, features = ["dicom-pixeldata/default_windows", "dicom-pixeldata/openjpeg-sys"] } ``` Otherwise, the subdependencies can be added separately. ```toml dicom-pixeldata = {...

@alanwilter In your case you might be better served grabbing the individual library components that you need. ```toml dicom_object = "0.6" dicom_dictionary_std = "0.6" ``` Then in your code: ```rust...

@alanwilter I have moved your new question to discussions [here](https://github.com/Enet4/dicom-rs/discussions/447).

@Neopallium Thank you for the update to `openjp2`! If I may ask, are there any other plans for long-term maintainability of the crate? Without an issue tracker at the corresponding...

> Thank you, glad to be officially contributing to this project and hope to continue to! I am sorry to report that that opportunity has arrived so soon! :sweat_smile:

Did you perchance add the Cargo feature "jpeg-sys" without also excluding the default feature "openjp2"? You can also rebase the branch to remove `openjp2` from being enabled by default.

Thank you for your interest @naterichman! I have expanded the issue with more information. I am also available for answering any questions and/or providing some guidance, if you are interested...

Hello, @9enki! I'll be looking into DICOM-rs matters the upcoming weeks after a small hiatus. > * I have a function called [read_value_pns](https://github.com/Enet4/dicom-rs/pull/445/files#diff-65231185718d602fd3a63db21c6076af076fd9afb6c3d4303c6baeaffa2e1e13R456). I want to execute this function when...

Hello again. This contribution is a candidate for inclusion in 0.7.0, but then we need to make the proposed change of changing `SpecificCharacterSet` so that the type becomes opaque and...