fe2o3

Crates.iofe2o3
lib.rsfe2o3
version0.1.0
sourcesrc
created_at2024-01-02 22:14:50.455173
updated_at2024-01-02 22:14:50.455173
descriptionA chemistry library for Rust.
homepage
repository
max_upload_size
id1086716
size5,402
Daniel Probst (daenuprobst)

documentation

README

fe2o3

Conventions

Unit Testing

Unit tests are, as is done in Rust, written directly in the src file. PRs without unit tests are not merged. Example from cargo new:

pub fn add(left: usize, right: usize) -> usize {
    left + right
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        let result = add(2, 2);
        assert_eq!(result, 4);
    }
}
Commit count: 0

cargo fmt