| Crates.io | dicom-web |
| lib.rs | dicom-web |
| version | 0.2.3 |
| created_at | 2025-02-10 09:59:30.816162+00 |
| updated_at | 2025-09-24 07:17:56.613221+00 |
| description | A high-level API for accessing DICOMweb resources |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1549849 |
| size | 123,177 |
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();