mirror of
https://github.com/Snowiiii/Pumpkin.git
synced 2024-11-23 11:16:16 +00:00
8cde02e625
* add cleaner registry parsing * start adding recipes * add tags, and some crafting things * Fix echest command * add partly working crafting interface * add generated assets * fix container commands and clippy lints * fix issues with resolving recursive item tags for crafting * add flatten3x3 function * add shapeless crafting * add tests to and fix recipe flattening function * refactor recipe system a bit * add rayon to speed up initial loading of recipes * almost working after rebase * add deserialization for new crafting type "transmute" * make crafting work again * make shapeless recipes not require all permutations * fixed visual bug with when taking out ingredients for crafting * add support for new tags system
21 lines
465 B
TOML
21 lines
465 B
TOML
[package]
|
|
name = "pumpkin-inventory"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
# For items
|
|
pumpkin-world = { path = "../pumpkin-world" }
|
|
pumpkin-registry = {path = "../pumpkin-registry"}
|
|
pumpkin-macros = { path = "../pumpkin-macros" }
|
|
|
|
log.workspace = true
|
|
rayon.workspace = true
|
|
itertools.workspace = true
|
|
crossbeam.workspace = true
|
|
tokio.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
num-traits.workspace = true
|
|
num-derive.workspace = true
|