Crates.io | nannou_core |
lib.rs | nannou_core |
version | 0.19.0 |
source | src |
created_at | 2021-06-20 17:42:32.836433 |
updated_at | 2024-01-17 07:38:54.032618 |
description | The core components of nannou - a creative coding framework for Rust. Ideal for libraries and headless/embedded applications that use nannou. |
homepage | https://nannou.cc |
repository | https://github.com/nannou-org/nannou.git |
max_upload_size | |
id | 412522 |
size | 148,967 |
nannou's core abstractions.
This crate aims to be a stripped-down foundation for nannou projects that don't require windowing or wgpu graphics. These might include:
rust-gpu
shaders which have strict requirements beyond the limitations of no_std
.The crate includes nannou's color, math, geometry and noise abstractions without the deep stack of crates required to establish an event loop, interoperate with wgpu, etc. Another way of describing this crate might be "nannou without the I/O".
[features]
The primary feature of this crate is support for #![no_std]
. This means we can use the crate
for embedded applications and in some cases rust-gpu shaders.
By default, the std
feature is enabled. For compatibility with a #![no_std]
environment be
sure to disable default features (i.e. default-features = false
) and enable the libm
feature. The libm
feature provides some core functionality required by crates
std
: Enabled by default, enables the Rust std library. One of the primary features of this
crate is support for #![no_std]
. This means we can use the crate for embedded applications
and in some cases rust-gpu shaders. For compatibility with a #![no_std]
environment be sure
to disable default features (i.e. default-features = false
) and enable the libm
feature.libm
: provides some core math support in the case that std
is not enabled. This feature
must be enabled if std
is disabled.serde
: enables the associated serde serialization/deserialization features in glam
,
palette
and rand
.