1
0
Fork 0
mirror of https://github.com/azalea-rs/simdnbt.git synced 2025-08-02 07:26:04 +00:00

simdnbt is in the azalea-rs org now

This commit is contained in:
mat 2023-12-02 14:05:48 -06:00
parent d427ea3f55
commit 8d43740c4e
3 changed files with 5 additions and 5 deletions

View file

@ -12,9 +12,9 @@ simdnbt might be the fastest nbt decoder currently in existence. however to achi
here's a benchmark comparing simdnbt against a few of the other fastest nbt crates (though without actually accessing the data):
![simdnbt is ~3x faster than the second fastest nbt crate](https://github.com/mat-1/simdnbt/assets/27899617/03a4f916-d162-4a23-aa1a-12f1b11dc903)
![simdnbt is ~3x faster than the second fastest nbt crate](https://github.com/azalea-rs/simdnbt/assets/27899617/03a4f916-d162-4a23-aa1a-12f1b11dc903)
and here's a benchmark where it accesses the data and makes it owned:
![simdnbt is only about 50% faster than the second fastest in this one](https://github.com/mat-1/simdnbt/assets/27899617/9d716c39-3bff-4703-99d7-2bec91c6b205)
![simdnbt is only about 50% faster than the second fastest in this one](https://github.com/azalea-rs/simdnbt/assets/27899617/9d716c39-3bff-4703-99d7-2bec91c6b205)

View file

@ -4,7 +4,7 @@ version = "0.3.0"
edition = "2021"
description = "Derive macros for simdnbt"
license = "MIT"
repository = "https://github.com/mat-1/simdnbt"
repository = "https://github.com/azalea-rs/simdnbt"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -4,7 +4,7 @@ version = "0.3.0"
edition = "2021"
description = "an unnecessarily fast nbt decoder"
license = "MIT"
repository = "https://github.com/mat-1/simdnbt"
repository = "https://github.com/azalea-rs/simdnbt"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -20,7 +20,7 @@ criterion = { version = "^0.5.1", features = ["html_reports"] }
graphite_binary = "0.1.0"
valence_nbt = { version = "0.8.0", features = ["binary"] }
fastnbt = "2.4.4"
azalea-nbt = { git = "https://github.com/mat-1/azalea", rev="84e036ce3752ecf57904b0f5aff1f33d43e95a32" }
azalea-nbt = { git = "https://github.com/azalea-rs/azalea", rev = "84e036ce3752ecf57904b0f5aff1f33d43e95a32" }
hematite-nbt = { version = "0.5.2", default-features = false }
[features]