tangled
alpha
login
or
join now
brwr.dev
/
slimeball
1
fork
atom
(very WIP) Slime world parsing in Rust
1
fork
atom
overview
issues
pulls
pipelines
fix(lib): use head fastnbt
brwr.dev
8 months ago
be93180c
0d639a74
verified
This commit was signed with the committer's
known signature
.
brwr.dev
SSH Key Fingerprint:
SHA256:1CMSUJyAOQ8YZqYj02ZbAtxBTEOTNMiklFfu31/46wg=
+14
-3
2 changed files
expand all
collapse all
unified
split
Cargo.lock
slimeball-lib
Cargo.toml
+13
-2
Cargo.lock
reviewed
···
1076
1076
]
1077
1077
1078
1078
[[package]]
1079
1079
+
name = "fastnbt"
1080
1080
+
version = "2.5.0"
1081
1081
+
source = "git+https://github.com/owengage/fastnbt#e2a5d8a7001d4f074ae99fd21bb485667934baeb"
1082
1082
+
dependencies = [
1083
1083
+
"byteorder",
1084
1084
+
"cesu8",
1085
1085
+
"serde",
1086
1086
+
"serde_bytes",
1087
1087
+
]
1088
1088
+
1089
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
2625
-
"fastnbt",
2636
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
2638
-
"fastnbt",
2649
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
reviewed
···
10
10
11
11
[dependencies]
12
12
byteorder = "1.5.0"
13
13
-
fastnbt = "2.5.0"
13
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"