sciforge-core 0.0.4

Shared engineering primitives: materials, fasteners, fluids, propulsion taxonomies, std components.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod lithium_complex;
pub mod simple;

pub use lithium_complex::*;
pub use simple::*;

use crate::lubrications::Grease;

pub fn all_lithium_greases() -> Vec<&'static Grease> {
    vec![
        &simple::LITHIUM_GREASE,
        &lithium_complex::LITHIUM_COMPLEX_GREASE,
    ]
}