proof-engine 0.1.1

A mathematical rendering engine for Rust. Every visual is the output of a mathematical function.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "proof-engine"
version = "0.1.1"
authors = ["Matthew Busel <matt@tensorust.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A mathematical rendering engine for Rust. Every visual is the output of a mathematical function."
homepage = "https://github.com/Mattbusel/proof-engine"
readme = "README.md"
keywords = [
    "game-engine",
    "rendering",
    "mathematics",
    "ascii",
    "opengl",
]
categories = [
    "game-engines",
    "graphics",
    "rendering",
]
license = "MIT"
repository = "https://github.com/Mattbusel/proof-engine"

[lib]
name = "proof_engine"
path = "src/lib.rs"

[[example]]
name = "amorphous_entity"
path = "examples/amorphous_entity.rs"

[[example]]
name = "chaos_field"
path = "examples/chaos_field.rs"

[[example]]
name = "force_fields"
path = "examples/force_fields.rs"

[[example]]
name = "full_combat"
path = "examples/full_combat.rs"

[[example]]
name = "galaxy"
path = "examples/galaxy.rs"

[[example]]
name = "heartbeat"
path = "examples/heartbeat.rs"

[[example]]
name = "hello_glyph"
path = "examples/hello_glyph.rs"

[[example]]
name = "math_rain"
path = "examples/math_rain.rs"

[[example]]
name = "particle_demo"
path = "examples/particle_demo.rs"

[[example]]
name = "playground"
path = "examples/playground.rs"

[[example]]
name = "strange_attractors"
path = "examples/strange_attractors.rs"

[[example]]
name = "supernova"
path = "examples/supernova.rs"

[[bench]]
name = "glyph_bench"
path = "benches/glyph_bench.rs"
harness = false

[[bench]]
name = "particle_bench"
path = "benches/particle_bench.rs"
harness = false

[dependencies.ab_glyph]
version = "0.2"

[dependencies.bytemuck]
version = "1"
features = ["derive"]

[dependencies.cpal]
version = "0.15"

[dependencies.env_logger]
version = "0.11"

[dependencies.glam]
version = "0.25"

[dependencies.glow]
version = "0.16"

[dependencies.glutin]
version = "0.32"

[dependencies.glutin-winit]
version = "0.5"

[dependencies.log]
version = "0.4"

[dependencies.noise]
version = "0.9"

[dependencies.raw-window-handle]
version = "0.6"

[dependencies.rodio]
version = "0.17"
features = ["wav"]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.toml]
version = "0.8"

[dependencies.winit]
version = "0.30"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]