Skip to content

Commit

Permalink
Fill in Cargo.toml details.
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdaxymox committed Nov 11, 2023
1 parent 147ae02 commit 47641c7
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@
name = "approx_cmp"
version = "0.2.0"
edition = "2021"
authors = ["LambdaXymox <[email protected]>"]
description = "A library for doing approximate comparisons of finite precision numbers."
categories = [
"algorithms",
"development-tools::debugging",
"no_std",
]
keywords = [
"approximate",
"comparison",
"float",
"graphics",
"numerics",
]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https:/lambdaxymox/approx_cmp/"

[lib]
name = "approx_cmp"
path = "src/lib.rs"
crate-type = ["rlib", "cdylib"]

[features]
default = ["std"]
Expand Down
17 changes: 17 additions & 0 deletions crates/abs_diff_cmp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
name = "abs_diff_cmp"
version = "0.2.0"
edition = "2021"
authors = ["LambdaXymox <[email protected]>"]
description = "A library for doing approximate comparisons of finite precision numbers."
categories = [
"algorithms",
"development-tools::debugging",
"no_std",
]
keywords = [
"approximate",
"comparison",
"float",
"graphics",
"numerics",
]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https:/lambdaxymox/approx_cmp/"

[features]
default = ["std"]
Expand Down
17 changes: 17 additions & 0 deletions crates/relative_cmp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
name = "relative_cmp"
version = "0.2.0"
edition = "2021"
authors = ["LambdaXymox <[email protected]>"]
description = "A library for doing approximate comparisons of finite precision numbers."
categories = [
"algorithms",
"development-tools::debugging",
"no_std",
]
keywords = [
"approximate",
"comparison",
"float",
"graphics",
"numerics",
]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https:/lambdaxymox/approx_cmp/"

[features]
default = ["std"]
Expand Down
17 changes: 17 additions & 0 deletions crates/ulps_cmp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
name = "ulps_cmp"
version = "0.2.0"
edition = "2021"
authors = ["LambdaXymox <[email protected]>"]
description = "A library for doing approximate comparisons of finite precision numbers."
categories = [
"algorithms",
"development-tools::debugging",
"no_std",
]
keywords = [
"approximate",
"comparison",
"float",
"graphics",
"numerics",
]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https:/lambdaxymox/approx_cmp/"

[features]
default = ["std"]
Expand Down

0 comments on commit 47641c7

Please sign in to comment.