Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[parent] tweak root crate documentation #386

Merged
merged 1 commit into from
Jul 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions parent/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//! # DICOM-rs library
//!
//! This crate serves as a parent for library crates in the DICOM-rs project.
//! This crate serves as a mother library for
//! building DICOM compliant systems.
//!
//! This library aggregates the key modules
//!
//! that you are likely to require when building DICOM compliant systems.
//! that you are likely to require when building software using DICOM-rs.
//! These modules are also available as crates
//! which can be fetched independently,
//! in complement or as an alternative to using the `dicom` crate.
Expand Down Expand Up @@ -59,7 +59,12 @@
//! It might only be truly needed if
//! the `object` API is unfit or too inefficient for a certain task.
//!

//! ## More
//!
//! See the [DICOM-rs project repository][2]
//! for the full list of crates available in the DICOM-rs ecosystem.
//!
//! [2]: https://github.com/Enet4/dicom-rs
pub use dicom_core as core;
pub use dicom_dictionary_std as dictionary_std;
pub use dicom_dump as dump;
Expand Down