Cord/crates/cord-cordic/Cargo.toml

16 lines
444 B
TOML

[package]
name = "cord-cordic"
version = "0.1.0"
edition = "2021"
description = "CORDIC compiler and evaluator — pure shift-and-add arithmetic for trig IR"
license = "MIT"
repository = "https://github.com/pszsh/cord"
keywords = ["cordic", "fixed-point", "arithmetic", "sdf"]
categories = ["mathematics", "no-std"]
[dependencies]
cord-trig = { path = "../cord-trig" }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
regex = "1"