(very WIP) Slime world parsing in Rust

fix(lib): use head fastnbt

brwr.dev be93180c 0d639a74

verified
+14 -3
+13 -2
Cargo.lock
··· 1076 1076 ] 1077 1077 1078 1078 [[package]] 1079 + name = "fastnbt" 1080 + version = "2.5.0" 1081 + source = "git+https://github.com/owengage/fastnbt#e2a5d8a7001d4f074ae99fd21bb485667934baeb" 1082 + dependencies = [ 1083 + "byteorder", 1084 + "cesu8", 1085 + "serde", 1086 + "serde_bytes", 1087 + ] 1088 + 1089 + [[package]] 1079 1090 name = "fastrand" 1080 1091 version = "2.3.0" 1081 1092 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2622 2633 dependencies = [ 2623 2634 "color-eyre", 2624 2635 "eframe", 2625 - "fastnbt", 2636 + "fastnbt 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", 2626 2637 "mimalloc", 2627 2638 "rfd", 2628 2639 "slimeball-lib", ··· 2635 2646 version = "0.1.0" 2636 2647 dependencies = [ 2637 2648 "byteorder", 2638 - "fastnbt", 2649 + "fastnbt 2.5.0 (git+https://github.com/owengage/fastnbt)", 2639 2650 "serde", 2640 2651 "thiserror 2.0.15", 2641 2652 "tracing",
+1 -1
slimeball-lib/Cargo.toml
··· 10 10 11 11 [dependencies] 12 12 byteorder = "1.5.0" 13 - fastnbt = "2.5.0" 13 + fastnbt = { git = "https://github.com/owengage/fastnbt" } 14 14 serde = "1.0.219" 15 15 thiserror = "2.0.12" 16 16 tracing = "0.1.41"