container_device_interface/generate/mod.rs
1/// In cdi-go, the oci-runtime-tools generate tool is used to generate configuration JSON for the OCI runtime.
2/// However, since it is not possible to use existing libraries like cdi-go, we had to implement this functionality
3/// ourselves. Taking this opportunity, we hope to make this version the starting point for expanding oci-runtime-tools-rs
4/// and providing better support for the OCI runtime.
5/// It is important to note that at this stage, our primary focus is on implementations related to our cdi-rs project.
6pub mod config;
7pub mod generator;