hoomd_utility/lib.rs
1// Copyright (c) 2024-2026 The Regents of the University of Michigan.
2// Part of hoomd-rs, released under the BSD 3-Clause License.
3
4#![doc(
5 html_favicon_url = "https://raw.githubusercontent.com/glotzerlab/hoomd-rs/7352214172a490cc716492e9724ff42720a0018a/doc/theme/favicon.svg"
6)]
7#![doc(
8 html_logo_url = "https://raw.githubusercontent.com/glotzerlab/hoomd-rs/7352214172a490cc716492e9724ff42720a0018a/doc/theme/favicon.svg"
9)]
10
11//! Utilities
12//!
13//! Common utility code used by other hoomd-rs crates and user code.
14//!
15//! # Complete documentation
16//!
17//! `hoomd-utility` is is a part of *hoomd-rs*. Read the [complete documentation]
18//! for more information.
19//!
20//! [complete documentation]: https://hoomd-rs.readthedocs.io
21
22pub mod data;
23pub mod valid;