Ludwig Stecher
Ludwig Stecher
[Relevant wikipedia section](https://en.wikipedia.org/wiki/ANSI_escape_code#CSI_(Control_Sequence_Introducer)_sequences) Apart from ANSI sequences for cursor movement, we should also support `\r` to move to the start of the line. Moving up or down is tricky because...
`to-html` supports the following target operating systems (list taken from [here](https://doc.rust-lang.org/reference/conditional-compilation.html#target_os)): - [ ] windows - [x] macos - [x] linux - [x] freebsd - [ ] dragonfly - [...
### Problem `cargo add` can be used to add an optional feature to an existing dependency: ```sh > cargo add once_cell -F unstable Updating crates.io index Adding once_cell v1.11.0 to...
This PR * Reformats everything with `cargo fmt`. This is generally recommended in open-source projects, as it enforces a consistent style. Also, rust-analyzer runs `cargo fmt` by default every time...
Right now the JavaScript examples use `Reflect.get` and `Reflect.set` to access JavaScript fields. This has two problems: * It is cumbersome to write * The generated JS code is inefficient...
Interfaces
It would be nice if Gleam supported interfaces, which could work similar to Java or Go interfaces, Rust traits or Haskell typeclasses. I think Rust traits would be the ideal...
This makes sure that all dependencies and their versions are embedded in the binary in a machine-readable format, and can be obtained with `cargo audit bin`. This allows auditing binaries...
Closes #10 When running `cargo bench -- --write`, produce a JSON file of the following shape: ```json { "main.parse.strings": { "display_name": "strings", "sample_count": 100, "iter_count": 200, "time": { "fastest": 921251,...
**Is your feature request related to a problem? Please describe.** The name LibertyOS is already taken by a linux distro advertising as the first blockchain operating system. **Describe the solution...
When I modify a file in VS Code containing errors from `cargo check`, the red squiggly lines often don't move with the text. Instead they remain in the very row...