Justus K
Justus K
I would simply not print the custom sections (or provide an option to enable), and use the one-line mode as a minimal variant.
Two things I really need for this project to be usable in most of my projects: - Flakes support. I really like to use Flakes instead of other things like...
I’m interested as well. I always wanted to do something like this and it would be a nice challenge for me.
I can do the serde part. I suggest to expose a struct or enum which represents any data that can be serialized and deserialized like [serde_json](https://docs.rs/serde_json/1.0.46/serde_json/value/enum.Value.html) does it with their...
I'm currently working on a [project](https://github.com/Stupremee/kaleidoscope.rs) that uses `codespan-reporting` and `salsa`.
That’s exactly what I thought of. I saw the example and created my own binary but it’s much easier if you provide a fasteval REPL crate.
Okay. Thanks for the information.
I can add this if it's okay.
Yep already saw it
That’s a good idea 👍. Rust formatting has support for [hex](https://doc.rust-lang.org/std/fmt/trait.LowerHex.html), [oct](https://doc.rust-lang.org/std/fmt/trait.Octal.html) and [binary](https://doc.rust-lang.org/std/fmt/trait.Binary.html). Probably you can use that.