mirror of https://github.com/zyllian/classics.git synced 2025-05-10 21:16:42 -07:00

implement CustomBlocks (resolves #19) and InventoryOrder (resolves #43)

This commit is contained in:
Zoey 2024-04-24 23:10:30 -07:00
parent d53f37d664
commit be81b8d581
No known key found for this signature in database
GPG key ID: 8611B896D1AAFAF2
11 changed files with 199 additions and 45 deletions

35
Cargo.lock generated
View file

@ -126,6 +126,7 @@ dependencies = [
"safer-bytes",
"serde",
"serde_json",
"strum",
"tokio",
]
@ -191,6 +192,12 @@ dependencies = [
"allocator-api2",
]
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
[[package]]
name = "hermit-abi"
version = "0.3.9"
@ -424,6 +431,12 @@ version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
[[package]]
name = "rustversion"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80af6f9131f277a45a3fba6ce8e2258037bb0477a67e610d3c1fe046ab31de47"
[[package]]
name = "ryu"
version = "1.0.17"
@ -503,6 +516,28 @@ dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "strum"
version = "0.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
version = "0.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
"syn",
]
[[package]]
name = "syn"
version = "2.0.60"