check it out i made a parser ​ it's the simplest crate to ever exist but it's there and anyone can use it!

https://crates.io/crates/colonparse

it's called
colonparse what it does is it takes strings in the form of "key:value:otherkey:othervalue:..." and turns them into tuples vectors [("key", "value"), ("otherkey", "othervalue"), ...] OR hashmaps {"key": "value", "otherkey": "othervalue", ...}

i made this for my
gduitls crate i'm making for my Geometry Dash Fluxer bot. the downloadGJLevel22.php endpoint returns a level object, and the level object has key value pairs separated by colons just like i described above. so i figured i'd try to make my own parser for it and it worked!

i still haven't used it in
gdutils but i'm sure someone will have a use for it. have at it!

source code:
https://codeberg.org/JuxGD/colonparse

#rust #geometrydash #noai
crates.io: Rust Package Registry

crates.io serves as a central registry for sharing crates, which are packages or libraries written in Rust that you can use to enhance your projects

@JuxGD I parse my colon every morning after coffee