[package] name = "dicom-ul" version = "0.8.0" authors = ["Eduardo Pinho ", "Paul Knopf "] description = "Types and methods for interacting with the DICOM Upper Layer Protocol" edition = "2018" rust-version = "1.72.0" license = "MIT OR Apache-2.0" repository = "https://github.com/Enet4/dicom-rs" categories = ["network-programming"] keywords = ["dicom", "network"] readme = "README.md" [dependencies] byteordered = "0.6" bytes = "^1.6" dicom-encoding = { path = "../encoding/", version = "0.8.0" } dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.8.0", default-features = false } snafu = "0.8" tracing = "0.1.34" [dependencies.tokio] version = "^1.38" optional = true features = [ "rt", "rt-multi-thread", "net", "io-util", "time" ] [dev-dependencies] matches = "0.1.8" tokio = { version = "^1.38", features = ["io-util", "macros", "net", "rt", "rt-multi-thread"] } [features] async = ["dep:tokio"] default = []