[package]
edition = "2021"
name = "parent_ai_json_engine"
version = "0.0.1"
authors = ["rayan"]
build = false
exclude = [
"data/**",
"target/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crate provides a JSON engine for collecting, aggregating, and managing models."
documentation = "https://docs.rs/parent_ai_json_engine"
readme = "README.md"
license = "MIT"
[lib]
name = "parent_ai_json_engine"
path = "src/lib.rs"
[[test]]
name = "collector_integration"
path = "tests/collector_integration.rs"
[[test]]
name = "collector_tests"
path = "tests/collector_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[[test]]
name = "validator_tests"
path = "tests/validator_tests.rs"
[dependencies.native_neural_network_std]
version = "=0.1.7"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1