├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── NEWS.md ├── README.md ├── benches └── filetests.rs ├── examples └── nbtprint.rs ├── scripts ├── id_rsa.enc └── travis-doc-upload.cfg ├── src ├── blob.rs ├── de.rs ├── error.rs ├── lib.rs ├── macros.rs ├── raw.rs ├── ser.rs ├── tests.rs └── value.rs └── tests ├── arrays.nbt ├── big1.nbt ├── complex_player.dat ├── data.rs.in ├── filetests.rs ├── level.dat ├── serde_basics.rs ├── serde_errors.rs ├── simple_player.dat ├── small1.nbt ├── small2.nbt ├── small3.nbt └── small4.nbt /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/README.md -------------------------------------------------------------------------------- /benches/filetests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/benches/filetests.rs -------------------------------------------------------------------------------- /examples/nbtprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/examples/nbtprint.rs -------------------------------------------------------------------------------- /scripts/id_rsa.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/scripts/id_rsa.enc -------------------------------------------------------------------------------- /scripts/travis-doc-upload.cfg: -------------------------------------------------------------------------------- 1 | PROJECT_NAME=hematite_nbt 2 | DOCS_REPO=PistonDevelopers/docs.git 3 | SSH_KEY_TRAVIS_ID=f2abd1c95733 4 | -------------------------------------------------------------------------------- /src/blob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/src/blob.rs -------------------------------------------------------------------------------- /src/de.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/src/de.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/src/macros.rs -------------------------------------------------------------------------------- /src/raw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/src/raw.rs -------------------------------------------------------------------------------- /src/ser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/src/ser.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/src/tests.rs -------------------------------------------------------------------------------- /src/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/src/value.rs -------------------------------------------------------------------------------- /tests/arrays.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/arrays.nbt -------------------------------------------------------------------------------- /tests/big1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/big1.nbt -------------------------------------------------------------------------------- /tests/complex_player.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/complex_player.dat -------------------------------------------------------------------------------- /tests/data.rs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/data.rs.in -------------------------------------------------------------------------------- /tests/filetests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/filetests.rs -------------------------------------------------------------------------------- /tests/level.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/level.dat -------------------------------------------------------------------------------- /tests/serde_basics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/serde_basics.rs -------------------------------------------------------------------------------- /tests/serde_errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/serde_errors.rs -------------------------------------------------------------------------------- /tests/simple_player.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/simple_player.dat -------------------------------------------------------------------------------- /tests/small1.nbt: -------------------------------------------------------------------------------- 1 | 2 | hello worldname Bananrama -------------------------------------------------------------------------------- /tests/small2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/small2.nbt -------------------------------------------------------------------------------- /tests/small3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/small3.nbt -------------------------------------------------------------------------------- /tests/small4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/hematite_nbt/HEAD/tests/small4.nbt --------------------------------------------------------------------------------