ferrum_native_ops/lib.rs
1//! Native operator ABI and manifest resolver.
2//!
3//! This crate intentionally does not contain third-party CUDA/C++ operator
4//! sources. It only defines the ABI surface and fail-closed artifact resolver
5//! used by later release gates and runtime integration work.
6
7pub mod abi;
8pub mod artifact_set;
9pub mod build_cache;
10pub mod build_unit;
11pub mod coff;
12pub mod manifest;
13pub mod registry;
14pub mod resolver;
15
16pub use abi::*;
17pub use artifact_set::*;
18pub use build_cache::*;
19pub use build_unit::*;
20pub use coff::*;
21pub use manifest::*;
22pub use registry::*;
23pub use resolver::*;