[package]
edition = "2021"
name = "native_neural_network"
version = "0.3.0"
authors = ["RAYAN"]
build = false
exclude = [
"Cargo.lock",
".gitignore",
]
include = [
"src/**",
"wrappers/",
"examples/**",
"training/**",
"Cargo.toml",
"README.md",
"QUICKSTART.md",
"ComingSoon.md",
"LICENCE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lib no_std Rust for native neural network (.rnn)"
documentation = "https://docs.rs/native_neural_network"
readme = "README.md"
license = "MIT"
[package.metadata.docs.rs]
features = ["default"]
all-features = true
[features]
default = []
publisher-trust-service = []
[lib]
name = "native_neural_network"
path = "src/lib.rs"
test = false
doctest = false
[[bin]]
name = "train_enormous_model"
path = "training/enormous__model.rs"
[[bin]]
name = "train_large_model"
path = "training/large_model.rs"
[[bin]]
name = "train_medium_model"
path = "training/medium_model.rs"
[[bin]]
name = "train_small_model"
path = "training/small_model.rs"
[[example]]
name = "generate_sample_model"
path = "examples/generate_sample_model.rs"
[[example]]
name = "scan_rnn"
path = "examples/scan_rnn.rs"