ToBinio

Results 24 comments of ToBinio

I don't know if I am the only one, but publishing something on crates.io already feels kinda "scary". simply because of the permanent nature of crates.io. I do believe adding...

@trespasserw just a friendly ping 😀

just keeping the features empty sounds better to me than just not updating `.crates2.json` tbh I don't even know where the feature data is used btw, thanks for the quick...

would this help with #115 ? I am currently running into a similar issue to #115 and I believe this could be fixed by handling the whole text as a...

I dont have any very specific use case in mind. I simple once planed to do some world analysis. Do you have any plans for adding a block placing |...

what do you think about some sort of backing step, wich unifies the data structure of all chunks. Something similar to what the `JavaChunk` enum does, but also on a...

very simplified it could look like this. ``` rust struct MinecraftChunk { blocks: Vec, status: String, } let minecraft_chunk = current_minecraft_chunk.into_minecraft_chunk(); let minecraft_chunk = pre18_minecraft_chunk.into_minecraft_chunk(); let minecraft_chunk = pre13_minecraft_chunk.into_minecraft_chunk(); let...

would you say it does make sence setting the foundation for such a change though some sort of `QueryChunk` wich is a simple version of this `CompleteChunk` | InternalChunk with...

sounds good! you said that you would keep the sections and block palettes. In which way would it then be diffrent to the `CurrentJavaChunk`? we could simplify the `SectionTower` (so...

after implemanting the most basic `complete::Chunk` i would like to start working on somesort of `complete::Region` which abstracts the Region-file. i would image the creation api to be simular to...