19 lines
471 B
TOML
19 lines
471 B
TOML
[package]
|
|
name = "cord-sparse"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Sparse grid interpolation in fixed-point arithmetic for CORDIC pipelines"
|
|
license = "MIT"
|
|
repository = "https://github.com/pszsh/cord"
|
|
keywords = ["interpolation", "sparse-grid", "fixed-point", "cordic"]
|
|
categories = ["mathematics", "no-std"]
|
|
|
|
[dependencies]
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
|
|
[[bench]]
|
|
name = "sparse_interp"
|
|
harness = false
|