From 5f69a800a864603b706b97c8e2f8ca376f77be5c Mon Sep 17 00:00:00 2001 From: Kevin Reid Date: Sun, 29 Oct 2023 20:47:55 -0700 Subject: [PATCH] Update `[package.metadata.docs.rs]`. --- all-is-cubes-desktop/Cargo.toml | 3 +++ all-is-cubes-mesh/Cargo.toml | 3 +++ all-is-cubes-port/Cargo.toml | 3 +++ all-is-cubes/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/all-is-cubes-desktop/Cargo.toml b/all-is-cubes-desktop/Cargo.toml index fc18fd2f6..abe403289 100644 --- a/all-is-cubes-desktop/Cargo.toml +++ b/all-is-cubes-desktop/Cargo.toml @@ -13,6 +13,9 @@ license = "MIT OR Apache-2.0" categories = ["games", "rendering"] exclude = ["*.app", "*.desktop"] +[package.metadata.docs.rs] +features = [] + [[bin]] name = "all-is-cubes" path = "src/main.rs" diff --git a/all-is-cubes-mesh/Cargo.toml b/all-is-cubes-mesh/Cargo.toml index 80e4ded03..abf2395b5 100644 --- a/all-is-cubes-mesh/Cargo.toml +++ b/all-is-cubes-mesh/Cargo.toml @@ -10,6 +10,9 @@ repository = "https://github.com/kpreid/all-is-cubes" license = "MIT OR Apache-2.0" categories = ["games", "graphics", "rendering"] +[package.metadata.docs.rs] +features = [] + [lib] # Disable running as benchmark so that the default doesn't interfere with Criterion usage. bench = false diff --git a/all-is-cubes-port/Cargo.toml b/all-is-cubes-port/Cargo.toml index 25fefd589..1b258d3e8 100644 --- a/all-is-cubes-port/Cargo.toml +++ b/all-is-cubes-port/Cargo.toml @@ -10,6 +10,9 @@ repository = "https://github.com/kpreid/all-is-cubes" license = "MIT OR Apache-2.0" categories = ["games", "rendering::data-formats"] +[package.metadata.docs.rs] +features = [] + [lib] # Disable running as benchmark so that the default doesn't interfere with Criterion usage. bench = false diff --git a/all-is-cubes/Cargo.toml b/all-is-cubes/Cargo.toml index 2ba2c2a1c..8ad692989 100644 --- a/all-is-cubes/Cargo.toml +++ b/all-is-cubes/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" categories = ["games", "graphics", "rendering::engine"] [package.metadata.docs.rs] -features = ["arbitrary"] +features = ["arbitrary", "save", "std"] [lib] # Disable running as benchmark so that the default doesn't interfere with Criterion usage.