From 7b203ef423cf19133979e4c22f2ea1c9272797d9 Mon Sep 17 00:00:00 2001 From: Alexis Date: Tue, 17 Dec 2024 03:58:48 -0800 Subject: [PATCH] hopefully the last attempt to fix the docs.rs builds --publish --- Cargo.lock | 12 ++++++------ Cargo.toml | 14 +++++++------- client/Cargo.toml | 10 +++++----- common/Cargo.toml | 4 ++-- macros/Cargo.toml | 6 +++--- server/Cargo.toml | 10 +++++----- utils/Cargo.toml | 8 ++++---- 7 files changed, 32 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7898c75e..6af39ad0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -484,7 +484,7 @@ dependencies = [ [[package]] name = "catgirl-engine" -version = "0.14.43" +version = "0.14.44" dependencies = [ "android_logger", "build-info", @@ -517,7 +517,7 @@ dependencies = [ [[package]] name = "catgirl-engine-client" -version = "0.14.43" +version = "0.14.44" dependencies = [ "build-info", "build-info-build", @@ -541,7 +541,7 @@ dependencies = [ [[package]] name = "catgirl-engine-common" -version = "0.14.43" +version = "0.14.44" dependencies = [ "serde", "serde_json", @@ -549,7 +549,7 @@ dependencies = [ [[package]] name = "catgirl-engine-macros" -version = "0.14.43" +version = "0.14.44" dependencies = [ "catgirl-engine-common", "quote", @@ -560,7 +560,7 @@ dependencies = [ [[package]] name = "catgirl-engine-server" -version = "0.14.43" +version = "0.14.44" dependencies = [ "build-info", "build-info-build", @@ -577,7 +577,7 @@ dependencies = [ [[package]] name = "catgirl-engine-utils" -version = "0.14.43" +version = "0.14.44" dependencies = [ "build-info", "build-info-build", diff --git a/Cargo.toml b/Cargo.toml index 1c4dab65..16686911 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ name = "catgirl-engine" description = "A game engine for cool moddability and procedurally generated data" license = "Zlib" -version = "0.14.43" # https://semver.org (Do not use 1.0.0 until first production release) +version = "0.14.44" # https://semver.org (Do not use 1.0.0 until first production release) keywords = ["catgirl", "engine", "gamedev", "game"] categories = ["game-engines"] repository = "https://github.com/foxgirl-labs/catgirl-engine.git" @@ -108,12 +108,12 @@ cbindgen = { version = "~0", default-features = false } fs_extra = { version = "1.3.0", default-features = false, optional = true} [dependencies] -common = { version = "0.14.43", package = "catgirl-engine-common", path = "common" } -macros = { version = "0.14.43", package = "catgirl-engine-macros", path = "macros" } -utils = { version = "0.14.43", package = "catgirl-engine-utils", path = "utils" } -client = { version = "0.14.43", package = "catgirl-engine-client", path = "client", optional = true } -server = { version = "0.14.43", package = "catgirl-engine-server", path = "server", optional = true } -serde = { version = "~1.0", default-features = false } +common = { version = "0.14.44", package = "catgirl-engine-common", path = "common" } +macros = { version = "0.14.44", package = "catgirl-engine-macros", path = "macros" } +utils = { version = "0.14.44", package = "catgirl-engine-utils", path = "utils" } +client = { version = "0.14.44", package = "catgirl-engine-client", path = "client", optional = true } +server = { version = "0.14.44", package = "catgirl-engine-server", path = "server", optional = true } +serde = { version = "~1.0", default-features = false, features = ["derive"] } serde_json = { version = "~1.0", default-features = false, features = ["alloc"] } build-info = { version = "~0.0.39", default-features = false, features = ["runtime"] } cfg-if = { version = "~1", default-features = false } diff --git a/client/Cargo.toml b/client/Cargo.toml index 3af4a498..701e68c3 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -5,7 +5,7 @@ name = "catgirl-engine-client" description = "Client side part of the catgirl-engine crate" license = "Zlib" -version = "0.14.43" +version = "0.14.44" keywords = ["catgirl", "engine", "gamedev", "game"] categories = ["game-engines"] repository = "https://github.com/Foxgirl-labs/catgirl-engine.git" @@ -44,10 +44,10 @@ toml = { version = "~0.8", default-features = false, features = ["parse"] } build-info-build = { version = "~0.0.39", default-features = false, features = ["git"] } [dependencies] -common = { version = "0.14.43", package = "catgirl-engine-common", path = "../common" } -macros = { version = "0.14.43", package = "catgirl-engine-macros", path = "../macros" } -utils = { version = "0.14.43", package = "catgirl-engine-utils", path = "../utils" } -serde = { version = "~1.0", default-features = false, optional = true } +common = { version = "0.14.44", package = "catgirl-engine-common", path = "../common" } +macros = { version = "0.14.44", package = "catgirl-engine-macros", path = "../macros" } +utils = { version = "0.14.44", package = "catgirl-engine-utils", path = "../utils" } +serde = { version = "~1.0", default-features = false, features = ["derive"], optional = true } serde_json = { version = "~1.0", default-features = false, features = ["alloc"], optional = true } build-info = { version = "~0.0.39", default-features = false, features = ["runtime"] } wasm-bindgen = { version = "0.2.99", default-features = true, features = ["serde", "serde_json"] } diff --git a/common/Cargo.toml b/common/Cargo.toml index ac645168..bf0258da 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -5,7 +5,7 @@ name = "catgirl-engine-common" description = "Common crate for the catgirl-engine crate" license = "Zlib" -version = "0.14.43" +version = "0.14.44" keywords = ["catgirl", "engine", "gamedev", "game"] categories = ["game-engines"] repository = "https://github.com/foxgirl-labs/catgirl-engine.git" @@ -39,5 +39,5 @@ unused_self = "allow" struct_excessive_bools = "allow" [dependencies] -serde = { version = "~1.0", default-features = false } +serde = { version = "~1.0", default-features = false, features = ["derive"] } serde_json = { version = "~1.0", default-features = false, features = ["alloc"] } diff --git a/macros/Cargo.toml b/macros/Cargo.toml index e89b08a4..c799396b 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -5,7 +5,7 @@ name = "catgirl-engine-macros" description = "Procedural macro crate for the catgirl-engine crate" license = "Zlib" -version = "0.14.43" +version = "0.14.44" keywords = ["catgirl", "engine", "gamedev", "game"] categories = ["game-engines"] repository = "https://github.com/foxgirl-labs/catgirl-engine.git" @@ -46,8 +46,8 @@ unused_self = "allow" struct_excessive_bools = "allow" [dependencies] -common = { version = "0.14.43", package = "catgirl-engine-common", path = "../common" } +common = { version = "0.14.44", package = "catgirl-engine-common", path = "../common" } syn = { version = "~2" } quote = { version = "~1" } # Replace with proc_macro::quote!(...) when stable -serde = { version = "~1.0", default-features = false, optional = true } +serde = { version = "~1.0", default-features = false, features = ["derive"], optional = true } serde_json = { version = "~1.0", default-features = false, features = ["alloc"], optional = true } diff --git a/server/Cargo.toml b/server/Cargo.toml index fca3610c..939c8450 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -5,7 +5,7 @@ name = "catgirl-engine-server" description = "Server side part of the catgirl-engine crate" license = "Zlib" -version = "0.14.43" +version = "0.14.44" keywords = ["catgirl", "engine", "gamedev", "game"] categories = ["game-engines"] repository = "https://github.com/foxgirl-labs/catgirl-engine.git" @@ -44,10 +44,10 @@ toml = { version = "~0.8", default-features = false, features = ["parse"] } build-info-build = { version = "~0.0.39", default-features = false, features = ["git"] } [dependencies] -common = { version = "0.14.43", package = "catgirl-engine-common", path = "../common" } -macros = { version = "0.14.43", package = "catgirl-engine-macros", path = "../macros" } -utils = { version = "0.14.43", package = "catgirl-engine-utils", path = "../utils" } -serde = { version = "~1.0", default-features = false, optional = true } +common = { version = "0.14.44", package = "catgirl-engine-common", path = "../common" } +macros = { version = "0.14.44", package = "catgirl-engine-macros", path = "../macros" } +utils = { version = "0.14.44", package = "catgirl-engine-utils", path = "../utils" } +serde = { version = "~1.0", default-features = false, features = ["derive"], optional = true } serde_json = { version = "~1.0", default-features = false, features = ["alloc"], optional = true } build-info = { version = "~0.0.39", default-features = false, features = ["runtime"] } wasm-bindgen = { version = "0.2.99", default-features = true, features = ["serde", "serde_json"] } diff --git a/utils/Cargo.toml b/utils/Cargo.toml index f4e2453a..f441ba67 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -5,7 +5,7 @@ name = "catgirl-engine-utils" description = "Utility crate for the catgirl-engine crate" license = "Zlib" -version = "0.14.43" +version = "0.14.44" keywords = ["catgirl", "engine", "gamedev", "game"] categories = ["game-engines"] repository = "https://github.com/foxgirl-labs/catgirl-engine.git" @@ -45,9 +45,9 @@ toml = { version = "~0.8", default-features = false, features = ["parse"] } build-info-build = { version = "~0.0.39", default-features = false, features = ["git"] } [dependencies] -common = { version = "0.14.43", package = "catgirl-engine-common", path = "../common" } -macros = { version = "0.14.43", package = "catgirl-engine-macros", path = "../macros" } -serde = { version = "~1.0", default-features = false, optional = true } +common = { version = "0.14.44", package = "catgirl-engine-common", path = "../common" } +macros = { version = "0.14.44", package = "catgirl-engine-macros", path = "../macros" } +serde = { version = "~1.0", default-features = false, features = ["derive"], optional = true } serde_json = { version = "~1.0", default-features = false, features = ["alloc"], optional = true } tracing = { version = "~0.1", default-features = false, features = ["log"] } build-info = { version = "~0.0.39", default-features = false, features = ["runtime"] }