re_viewport 0.18.2

The central viewport panel of the Rerun viewer.
Documentation
//! Rerun Viewport Panel
//!
//! This crate provides the central panel that contains all space views.

// TODO(#6330): remove unwrap()
#![allow(clippy::unwrap_used)]

mod auto_layout;
mod screenshot;
mod space_view_highlights;
mod system_execution;
mod viewport;

pub use self::viewport::Viewport;

pub mod external {
    pub use re_space_view;
    pub use re_types_blueprint;
}