[package]
name = "axon-encoder"
version = "0.4.0"
description = "Flexible sensory encoding pipelines for spiking neural networks — rate, temporal, predictive, population, and neuromodulator-driven encoding for telemetry and cyber-physical data."
repository = "https://github.com/Limen-Neural/axon-encoder"
documentation = "https://docs.rs/axon-encoder"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.97.1"
keywords = ["snn", "spiking", "neuromorphic", "encoding", "spike"]
categories = ["science", "algorithms", "simulation"]
exclude = [
"/.github/",
"/.devcontainer/",
"/.codacy.yml",
"/.codecov.yml",
"/.dockerignore",
"/Dockerfile",
"/qodana.yaml",
"/REVIEW.md",
"/docs/",
"/rust-toolchain.toml",
]
[dependencies]
ndarray = { version = "0.16", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
rand = "0.10.2"
[dev-dependencies]
criterion = "0.8.2"
serde_json = "1.0"
ndarray = "0.16"
[features]
default = []
ndarray = ["dep:ndarray"]
serde = ["dep:serde"]
[[example]]
name = "ndarray_encoding"
required-features = ["ndarray"]
[[bench]]
name = "encoders"
harness = false
[[bench]]
name = "allocations"
harness = false