Skip to content

Commit

Permalink
hopefully the last attempt to fix the docs.rs builds --publish
Browse files Browse the repository at this point in the history
  • Loading branch information
lexi-the-cute committed Dec 17, 2024
1 parent 85ca01a commit 7b203ef
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 32 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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 }
Expand Down
10 changes: 5 additions & 5 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"] }
6 changes: 3 additions & 3 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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 }
10 changes: 5 additions & 5 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"] }
Expand Down
8 changes: 4 additions & 4 deletions utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"] }
Expand Down

0 comments on commit 7b203ef

Please sign in to comment.