[package]
edition = "2021"
rust-version = "1.87"
name = "dicom-map"
version = "0.2.1"
authors = ["Nathan Riley <git@nathanriley.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Memory-mapped O(1) DICOM tag dictionary"
homepage = "https://sigilweaver.app/dicom-atlas/"
documentation = "https://sigilweaver.app/dicom-atlas/docs/"
readme = "README.md"
keywords = [
"dicom",
"medical-imaging",
"tags",
"registry",
"rkyv",
]
categories = [
"science",
"data-structures",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/Sigilweaver/DICOM-Atlas"
[features]
embedded = []
[lib]
name = "dicom_map"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.memmap2]
version = "0.9"
[dependencies.rkyv]
version = "0.7.45"
features = [
"validation",
"size_32",
"alloc",
]
default-features = false
[dependencies.thiserror]
version = "2"
[dev-dependencies.anyhow]
version = "1"