rsbullet-core 0.3.3

Compiles bullet3 and exposes rust bindings to the C API
Documentation
#[derive(Default, Debug)]
pub enum Mode {
    #[default]
    SharedMemory,
    Direct,
    Gui,
    Udp {
        hostname: &'static str,
        port: Option<u16>,
    },
    Tcp {
        hostname: &'static str,
        port: Option<u16>,
    },
    GuiServer,
    GuiMainThread,
    SharedMemoryServer,
    SharedMemoryGui,
    GraphicsClient,
    GraphicsServer {
        port: Option<u16>,
    },
    GraphicsServerTcp {
        hostname: &'static str,
        port: Option<u16>,
    },
    GraphicsServerMainThread {
        port: Option<u16>,
    },

    #[cfg(feature = "dart")]
    Dart,
    #[cfg(feature = "physx")]
    PhysX,
    #[cfg(feature = "mujoco")]
    MuJoCo,
    #[cfg(feature = "grpc")]
    Grpc {
        hostname: &'static str,
        port: Option<i32>,
    },
}