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
15
16
17
pub mod antiseize;
pub mod brake_paste;
pub mod exhaust_paste;

pub use antiseize::*;
pub use brake_paste::*;
pub use exhaust_paste::*;

use crate::lubrications::Grease;

pub fn all_copper_greases() -> Vec<&'static Grease> {
    vec![
        &antiseize::COPPER_ANTISEIZE,
        &brake_paste::COPPER_BRAKE_PASTE,
        &exhaust_paste::COPPER_EXHAUST_PASTE,
    ]
}