oxedyne_fe2o3_geom/
lib.rs

1//! # PLACEHOLDER PACKAGE
2//! 
3//! This package name is reserved for the Oxedyne Hematite (fe2o3) ecosystem.
4//! 
5//! The actual implementation will be published in a future version.
6//! Please check https://github.com/oxedyne-io/fe2o3 for the latest updates.
7
8#![deny(missing_docs)]
9
10/// This is a placeholder function to make the crate valid.
11/// The actual implementation will be available in future versions.
12pub fn placeholder() -> &'static str {
13    "This package is reserved for the Oxedyne Hematite ecosystem"
14}
15
16#[cfg(test)]
17mod tests {
18    use super::*;
19
20    #[test]
21    fn test_placeholder() {
22        assert_eq!(placeholder(), "This package is reserved for the Oxedyne Hematite ecosystem");
23    }
24}