Niklas Saari

Results 127 comments of Niklas Saari

I believe you meant auth token of PulseAudio? Issue might be the creation of this directory https://github.com/Nicceboy/gamify-containers/blob/de0bfb1e32c54a3162cc8145c8be8cc65744a16b/entrypoint.sh#L35: Volume mount takes recursive ownership of `$HOME` directory only on the second run...

Likely the both cases should be fixed. This is recurring problem and difficult to fix without performance penalties, if it is allowed. In enum: ```rust #[rasn(choice, tag(explicit(context, 123)))] pub enum...

I believe that the Choice tag is only meant as field tag in this context. `rasn` side stackoverflow should be fixed on #479

Valid overall `rasn` type for that ASN.1 is likely ```rust #[derive(AsnType, Debug, Clone, Decode, Encode, PartialEq, Eq, Hash)] #[rasn(choice)] pub enum FizzBuzz { #[rasn(tag(context, 456))] Foo(()), #[rasn(tag(context, 789))] Bar(()), }...

Currently it is handled with those impossible ranges/ zero size so it is not completely ignored (those are set when no value is allowed). So there will be correct constraint...

There is new `justfile` that could help a bit: https://github.com/librasn/rasn/blob/main/justfile Requires [just](https://github.com/casey/just). To run all tests, run `just all` To get available options ```bash just --list Available recipes: all #...

Would it make sense to make `Debug` implementation to produce that presentation, and `to_string` just wraps it? Or is there some use case where debug could give more information and...

Yeah, `Display` would make much more sense. To clarify, we are talking about value notation? I think I could try to implement this in close future if no one else...

Ah, so we are using Rust to generate valid ASN.1 Schema 😄 I guess it makes now much more sense to keep in `AsnType`. Maybe `Display` should be reserved for...

I have actually benchmarked all open-source implementations of the OER codec, so there is work done already at least for that. I will get back later about that.