Skip to content

Commit

Permalink
Complete Cargo.toml keys
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamGallagher737 committed Nov 20, 2024
1 parent 9cf7467 commit ffc045b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
name = "radian"
version = "0.1.0"
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 <[email protected]>"]
exclude = [".github", "flake.*"]

[features]
default = ["std"]
Expand All @@ -11,8 +19,8 @@ ufmt = ["dep:ufmt", "dep:ufmt_float"]

[dependencies]
libm = { version = "0.2", optional = true }
ufmt = { version = "0.2.0", optional = true }
ufmt_float = { version = "0.2.0", optional = true }
ufmt = { version = "0.2", optional = true }
ufmt_float = { version = "0.2", optional = true }

[dev-dependencies]
approx = "0.5.1"
approx = "0.5"

0 comments on commit ffc045b

Please sign in to comment.