temporal-neural-solver 0.1.2

Ultra-fast neural network inference with sub-microsecond latency
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "temporal-neural-solver"
version = "0.1.2"
authors = ["Temporal Neural Solver Team"]
build = false
exclude = [
    "benchmarks/standalone/*",
    "scripts/*",
    "validate.sh",
    "*.md",
    "!README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ultra-fast neural network inference with sub-microsecond latency"
homepage = "https://github.com/temporal-neural-solver/tns"
documentation = "https://docs.rs/temporal-neural-solver"
readme = "README.md"
keywords = [
    "neural-network",
    "inference",
    "simd",
    "avx2",
    "performance",
]
categories = [
    "science",
    "mathematics",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/temporal-neural-solver/tns"

[features]
avx2 = []
avx512 = []
benchmark = ["criterion"]
default = []
simd = ["avx2"]
wasm = [
    "wasm-bindgen",
    "serde-wasm-bindgen",
    "console_error_panic_hook",
    "web-time",
    "js-sys",
    "web-sys",
]

[lib]
name = "temporal_neural_solver"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "benchmark"
path = "src/bin/benchmark.rs"

[[bin]]
name = "comprehensive_benchmark"
path = "src/bin/comprehensive_benchmark.rs"

[[bin]]
name = "prove_performance"
path = "src/bin/prove_performance.rs"

[[bin]]
name = "quick_validation"
path = "src/bin/quick_validation.rs"

[[bin]]
name = "simple_proof"
path = "src/bin/simple_proof.rs"

[[bin]]
name = "temporal-solver"
path = "src/bin/temporal-solver.rs"

[[bin]]
name = "tns"
path = "src/bin/tns.rs"

[[example]]
name = "basic_inference"
path = "examples/basic_inference.rs"

[[example]]
name = "batch_processing"
path = "examples/batch_processing.rs"

[[example]]
name = "performance_comparison"
path = "examples/performance_comparison.rs"

[[bench]]
name = "optimized_benchmark"
path = "benches/optimized_benchmark.rs"
harness = false

[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4.0"
features = ["derive"]

[dependencies.console_error_panic_hook]
version = "0.1"
optional = true

[dependencies.core_affinity]
version = "0.8"

[dependencies.criterion]
version = "0.5"
optional = true

[dependencies.getrandom]
version = "0.2"
features = ["js"]

[dependencies.js-sys]
version = "0.3"
optional = true

[dependencies.libc]
version = "0.2"

[dependencies.nalgebra]
version = "0.32"

[dependencies.ndarray]
version = "0.15"

[dependencies.ndarray-rand]
version = "0.14"

[dependencies.num-traits]
version = "0.2"

[dependencies.num_cpus]
version = "1.16"

[dependencies.rand]
version = "0.8"

[dependencies.rand_distr]
version = "0.4"

[dependencies.rayon]
version = "1.7"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde-wasm-bindgen]
version = "0.6"
optional = true

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.wasm-bindgen]
version = "0.2"
optional = true

[dependencies.web-sys]
version = "0.3"
optional = true

[dependencies.web-time]
version = "1.0"
optional = true

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.criterion]
version = "0.5"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true