├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README-zh.md ├── README.md └── src ├── anvil.rs ├── main.rs ├── mapping.rs ├── nbt.rs ├── remap.rs ├── task.rs └── text.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | 3 | # Privacy 4 | /test -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/README.md -------------------------------------------------------------------------------- /src/anvil.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/src/anvil.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/src/mapping.rs -------------------------------------------------------------------------------- /src/nbt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/src/nbt.rs -------------------------------------------------------------------------------- /src/remap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/src/remap.rs -------------------------------------------------------------------------------- /src/task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/src/task.rs -------------------------------------------------------------------------------- /src/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaveNightingale/uuid-remapper/HEAD/src/text.rs --------------------------------------------------------------------------------