lambda-rs 2023.1.30

A framework for building cross platform graphics & compute applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Lambda is a simple, fast, and safe compute engine written in Rust.

pub mod component;
pub mod events;
pub mod math;
pub mod render;
pub mod runtime;
pub mod runtimes;

/// The logging module provides a simple logging interface for Lambda
/// applications.
pub use logging;