| Crates.io | dicom-web |
| lib.rs | dicom-web |
| version | 0.3.0 |
| created_at | 2025-02-10 09:59:30.816162+00 |
| updated_at | 2025-10-07 12:53:52.007857+00 |
| description | A high-level API for accessing DICOMweb resources |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1549849 |
| size | 119,533 |
This is a DICOMweb client library, using the excellent dicom-rs crate.
use dicom_web::DicomWebClient;
let mut client = DicomWebClient::with_single_url("http://localhost:8042");
client.set_basic_auth("orthanc", "orthanc");
let studies = client.query_studies().run().await.unwrap();