meuron 0.4.0

Meuron is a modular neural network library written in rust for training simple neural networks.
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 = "2024"
name = "meuron"
version = "0.4.0"
authors = ["NLion74 <nlion@nlion.nl>"]
build = false
include = [
    "src/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE*",
    "examples/mnist/cpu.rs",
    "examples/mnist/gpu.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Meuron is a modular neural network library written in rust for training simple neural networks."
homepage = "https://github.com/NLion74/Meuron"
documentation = "https://github.com/NLion74/Meuron/blob/master/README.md"
readme = "README.md"
keywords = [
    "neural-network",
    "deep-learning",
    "machine-learning",
    "ai",
    "ml",
]
categories = [
    "science",
    "algorithms",
]
license = "Unlicense"
repository = "https://github.com/NLion74/Meuron"

[features]
default = []
gpu = [
    "dep:wgpu",
    "dep:pollster",
    "dep:bytemuck",
]

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

[[example]]
name = "mnist-mlp-cpu"
path = "examples/mnist/cpu.rs"

[[example]]
name = "mnist-mlp-gpu"
path = "examples/mnist/gpu.rs"
required-features = ["gpu"]

[dependencies.bytemuck]
version = "1.25.0"
features = ["derive"]
optional = true

[dependencies.ndarray]
version = "0.17.2"
features = ["serde"]

[dependencies.ndarray-rand]
version = "0.16.0"

[dependencies.pollster]
version = "0.4.0"
optional = true

[dependencies.postcard]
version = "1.1.3"
features = ["alloc"]

[dependencies.rand]
version = "0.10.0"

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

[dependencies.wgpu]
version = "28.0.0"
optional = true

[dev-dependencies.eframe]
version = "0.33.3"

[dev-dependencies.egui]
version = "0.33.3"

[dev-dependencies.egui_plot]
version = "0.34.1"

[dev-dependencies.flate2]
version = "1.1.9"

[dev-dependencies.ureq]
version = "3.2.0"