1
0
Fork 0
mirror of https://github.com/azalea-rs/simdnbt.git synced 2025-08-02 15:36:03 +00:00

release 0.1.1

This commit is contained in:
mat 2023-09-03 14:06:55 -05:00
parent f2f64433b7
commit f03c1394f0
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "simdnbt"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "an unnecessarily fast nbt decoder"
license = "MIT"

View file

@ -120,10 +120,10 @@ pub fn bench_read_file(filename: &str, c: &mut Criterion) {
fn bench(c: &mut Criterion) {
// bench_read_file("hello_world.nbt", c);
bench_read_file("bigtest.nbt", c);
bench_read_file("simple_player.dat", c);
// bench_read_file("bigtest.nbt", c);
// bench_read_file("simple_player.dat", c);
bench_read_file("complex_player.dat", c);
bench_read_file("level.dat", c);
// bench_read_file("level.dat", c);
// bench_read_file("stringtest.nbt", c);
// bench_read_file("inttest.nbt", c);
}