[package]
edition = "2021"
name = "native_neural_network_std"
version = "0.1.7"
authors = []
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ergonomic std wrapper for the `native_neural_network` crate (no_std) — std-friendly re-exports and utilities."
documentation = "https://docs.rs/native_neural_network_std"
readme = "README.md"
license = "MIT"
[package.metadata.docs.rs]
features = ["default"]
all-features = true
[features]
default = []
[lib]
name = "native_neural_network_std"
path = "src/lib.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[test]]
name = "aggressive"
path = "tests/aggressive.rs"
[[test]]
name = "error_handling"
path = "tests/error_handling.rs"
[[test]]
name = "ffi_compatibility"
path = "tests/ffi_compatibility.rs"
[[test]]
name = "forward_inference"
path = "tests/forward_inference.rs"
[[test]]
name = "load_model"
path = "tests/load_model.rs"
[[test]]
name = "metadata"
path = "tests/metadata.rs"
[[test]]
name = "rnn_api_wrappers"
path = "tests/rnn_api_wrappers.rs"
[[test]]
name = "serialization"
path = "tests/serialization.rs"
[[test]]
name = "visualization_endpoints"
path = "tests/visualization_endpoints.rs"
[dependencies.native_neural_network]
version = "0.2.0"