[package]
edition = "2021"
name = "native_neural_network_std"
version = "0.2.1"
authors = []
build = false
exclude = [
"Cargo.lock",
".gitignore",
"target/**",
]
include = [
"README.md",
"LICENSE",
"Cargo.toml",
"src/**",
"tests/**",
"examples/**",
"rnn_examples/**",
]
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 = []
publisher-trust-service = ["native_neural_network/publisher-trust-service"]
[lib]
name = "native_neural_network_std"
path = "src/lib.rs"
[[example]]
name = "complex"
path = "examples/complex.rs"
[[example]]
name = "medium"
path = "examples/medium.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[example]]
name = "very_complex"
path = "examples/very_complex.rs"
[[test]]
name = "aggressive"
path = "tests/aggressive.rs"
[[test]]
name = "deterministic"
path = "tests/deterministic.rs"
[[test]]
name = "differential"
path = "tests/differential.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 = "fuzz_structured"
path = "tests/fuzz_structured.rs"
[[test]]
name = "inspect_rnn"
path = "tests/inspect_rnn.rs"
[[test]]
name = "invariants"
path = "tests/invariants.rs"
[[test]]
name = "load_model"
path = "tests/load_model.rs"
[[test]]
name = "metadata"
path = "tests/metadata.rs"
[[test]]
name = "network_sizes"
path = "tests/network_sizes.rs"
[[test]]
name = "parser_benchmark"
path = "tests/parser_benchmark.rs"
[[test]]
name = "rnn_api_wrappers"
path = "tests/rnn_api_wrappers.rs"
[[test]]
name = "serialization"
path = "tests/serialization.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[test]]
name = "test_utils"
path = "tests/test_utils.rs"
[[test]]
name = "train_simulation"
path = "tests/train_simulation.rs"
[[test]]
name = "visualization_endpoints"
path = "tests/visualization_endpoints.rs"
[dependencies.native_neural_network]
version = "0.2.8"