Martin Habovštiak

Results 178 issues of Martin Habovštiak

## Bug Report ### Version 0.6.2 - all of them ### Platform Irrelevant ### Description MSRV was previously 1.39, then it [switched to 1.56](https://github.com/hyperium/tonic/commit/debcafe08cd64f03bff2fee0eaa1521e47794a8a#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5) and later the [edition was updated...

This allows users to add custom attributes to derived `impl` blocks. They are useful mainly for documentation: one can add `doc = "..."` explaining some details of (de) serialization which...

**Problem** When writing conditional, feature-based compilation, it's useful to document it. The best way seems to be adding `#[cfg_attr(docsrs, doc(cfg(feature = "serde")))]` to an item containing `#[cfg(feature = "serde")]`. However,...

enhancement

**Describe the bug** LND occasionally changes TLS certificate which causes BTCPayServer connection to break since TLS fingerprint changes as well. The user gets confusing error message and has to manually...

Lightning

**Is your feature request related to a problem? Please describe.** It's impossible to process sold items in automated fashion because the item data is missing from exported invoices. The only...

Feature Request
App
Invoice
PoS

This test uses lnpbp-testkit on Cryptoanarchy Debian Repository. It tests basic payment scenario using Lightning Network. The test is a bit hacky because of the limitations of lnpbp-testkit but does...

I believe it'd be more logical to take mutable reference to pins. I know that memory itself doesn't change, however, there are good reasons to require mutability anyway: * Accessing...

Hello, I've a problem in [Heimdall](https://github.com/Progressbar/heimdall). When I first run it, I get permission denied, but second time it works. I guess this is because export doesn't show up in...

When tracing it's often useful to log various internal bytes such as messages being communicated. This adds `emit_bytes` method to make this easier and to possibly keep the type information....

I noticed that `Key` is a type alias or a newtype depending on used features. This is a compatibility hazard. For example: Crate A: ```rust serializer.emit_arguments("foo", &format_args!("bar")) ``` Crate B:...

P-high
C-compatibility