[package]
name = "meuron"
version = "0.1.0"
edition = "2024"
authors = ["NLion74 <nlion@nlion.nl>"]
license = "Unlicense"
description = "A flexible and modular neural network library in Rust"
repository = "https://github.com/NLion74/Meuron"
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"]
include = [
"Cargo.toml",
"README.md",
"LICENSE*",
"src/**",
"examples/**",
]
[dependencies]
ndarray = { version = "0.17.2", features = ["serde"] }
ndarray-rand = "0.16.0"
rand = "0.9.2"
serde = { version = "1.0.228", features = ["derive"] }
postcard = { version = "1.1.3", features = ["alloc"] }
[[example]]
name = "mnist"
path = "examples/mnist.rs"
[lib]
name = "meuron"
path = "src/lib.rs"