commit ee673cfb002330cce353fdc2fba46e36adea2be7
parent 951200277530bc4588f36bcf49a57ccb1d19e5f7
Author: Zack Newman <zack@philomathiclife.com>
Date: Fri, 29 Aug 2025 12:08:21 -0600
add targets to rustdoc
Diffstat:
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
@@ -9,8 +9,8 @@ license = "MIT OR Apache-2.0"
name = "rational_extensions"
readme = "README.md"
repository = "https://git.philomathiclife.com/repos/rational_extensions/"
-rust-version = "1.88.0"
-version = "0.4.2"
+rust-version = "1.89.0"
+version = "0.4.3"
[lints.rust]
ambiguous_negative_literals = { level = "deny", priority = -1 }
@@ -87,7 +87,17 @@ single_char_lifetime_names = "allow"
[package.metadata.docs.rs]
all-features = true
+default-target = "x86_64-unknown-linux-gnu"
rustdoc-args = ["--cfg", "docsrs"]
+targets = [
+ "aarch64-apple-darwin",
+ "aarch64-unknown-linux-gnu",
+ "i686-pc-windows-msvc",
+ "i686-unknown-linux-gnu",
+ "x86_64-pc-windows-gnu",
+ "x86_64-pc-windows-msvc",
+ "x86_64-unknown-openbsd"
+]
[dependencies]
num-integer = { version = "0.1.46", default-features = false }