[package] name = "radian" version = "0.1.2" edition = "2021" license = "MIT OR Apache-2.0" description = " A normalized angle type " repository = "https://github.com/LiamGallagher737/radian" readme = "README.md" categories = ["no-std", "no-std::no-alloc", "mathematics"] keywords = ["math", "angles", "trigonometry", "no_std"] authors = ["Liam Gallagher "] exclude = [".github", "flake.*"] [features] default = ["std", "ufmt"] std = [] libm = ["dep:libm"] ufmt = ["dep:ufmt", "dep:ufloat"] [dependencies] libm = { version = "0.2", optional = true } ufmt = { version = "0.2", optional = true } ufloat = { version = "0.1", optional = true } [dev-dependencies] approx = "0.5" proptest = "1.5.0"