lcnr

Results 47 issues of lcnr

The serde feature is currently called `serde1`. This because serde derive requires that the crate serde is imported as `serde` and features share the same namespace with dependencies. As I...

C-enhancement
help wanted
P-low

This is currently not possible. I currently don't have a concrete example which needs this. :man_shrugging:

C-enhancement
help wanted
P-low

- specify what state is relevant/must not be changed - add methods to return raw opengl ids for textures. - add a method to invalidate the internal cache. I am...

C-enhancement
P-wontfix

### Version `0.1.35` ### Description ([playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=48026727980c86a24d2d826a281706be)) ```rust use tracing; // 0.1.35: #[tracing::instrument(level = "debug")] pub fn with_tracing(unused: ()) {} pub fn without_tracing(unused: ()) {} ``` results in ``` warning: unused...

Thank you for this app, it's really helpful for me :sparkling_heart: Trying to copy an existing diagram in quiver, I want to be able to add a label both above...

feature-request
diagrams

```koka rec type foo Foo(recur: foo -> int) fun yeet(x: foo) : int match x Foo(recur) -> recur(x) fun yoot() : int yeet(Foo(yeet)) fun main() : console () yoot().show().println() ```...

bug
types

The results of the default bencher are quite unstable(in successive benchmarks run without any other open programs, there were 10 % differences in the same test when comparing with `benchcmp`)....

enhancement
help wanted

This issue is based on a different idea which I explored in [a now yanked rfc](https://github.com/lcnr/blog/blob/master/yanked/num-bigint-div-rem.md). Add the following traits to `num-bigint`: ```rust // I am open for name changes,...

`BigUint`(and probably also `BigInt`) implements `Add` and `Add`, but only `AddAssign`. We should probably either implement `AddAssign` as well or remove `Add` as the current state is somewhat surprising/unintuitive. The...

enhancement
help wanted

folding a type before substituting is pretty much always wrong and could happen by accident, e.g. see https://github.com/rust-lang/rust/pull/99798#discussion_r968666538 this PR removes the `TypeFoldable` and `TypeVisitable` impl from `EarlyBinder`. r? types...

T-rustdoc
T-compiler
S-waiting-on-review