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 manifest;
12pub mod registry;
13pub mod resolver;
14
15pub use abi::*;
16pub use artifact_set::*;
17pub use build_cache::*;
18pub use build_unit::*;
19pub use manifest::*;
20pub use registry::*;
21pub use resolver::*;