Expand description
Rust SDK for NVIDIA Isaac Sim.
Adapter selection happens at compile time via cargo features:
- default:
arrowonly (pure Rust, no Isaac Sim required) dora: bridge + dora pub/sub adapterrerun: bridge + rerun viewer adapterfull: both adapters in one cdylib
The bridge feature enables the bridge rlib but NOT the cdylib C++ shim.
The C++ extension build passes --features isaac-sim-bridge/cdylib separately
so that a cargo add isaac-sim-rs -F bridge on a laptop without Isaac Sim
succeeds without requiring a C++ toolchain.
See the workspace README for the full compatibility matrix.
Re-exportsยง
pub use isaac_sim_arrow as arrow;arrowpub use isaac_sim_bridge as bridge;bridgepub use isaac_sim_dora as dora;dorapub use isaac_sim_rerun as rerun;rerun