Kosta
Kosta
The goal is to be able to deserialize json like {a: 1, b: 2.5} into {a: d128, b: d128} using serde. I think something "opt-in" is needed, at least for...
Would you be willing to support more authentication types? Especially `authorized_user`? I wrote a small CLI tool that I like to run locally. It would be much easier to adopt...
## Bug Report When calling Span::record multiple times, the the `fmt` subscriber logs the field multiple times. I don't think that this is the desired behaviour, but if it is,...
Use case: I want to load a yaml file, inject something in a mapping in a well-known place and dump back to the file. I want to do this with...
Hi! I wrote a small library that provides the following on top of `chrono`: * CalendarDuration that is able to add months and years (which have varying lengths and thus...
This line: https://github.com/shepmaster/snafu/blob/6159ea9f3a3e189f1faa2f63904402f04dea54ec/src/backtrace_shim.rs#L6 Gets rendered into docs.rs here: https://docs.rs/snafu/latest/snafu/struct.Backtrace.html Which made me think that I don't need to enable the feature `backtraces` to actually get backtraces. Cost me a few...
Do you consider [Logical Decoding / Streaming Replication](https://www.postgresql.org/docs/11/logicaldecoding.html) a goal of this library? I'm not 100% sure yet, but I might try a stab of implementing something similar as [wal2json](https://github.com/eulerto/wal2json)...
Hi! I noticed that fact that your download_streaming APIs return an `impl Stream` which is very inefficient. `create::Result` has size 72 on my machine (64bit arm), so for every byte...
[In the kustomize argocd-cm overlay](https://github.com/EarnestResearch/dhall-packages/blob/master/kubernetes/argocd/kustomize/overlays/argocd-cm.yaml), why is there the `if` condition for `$VALUES_FILE`? Where is values file filled? I could not find any documentation about it on argo-cd or google.
I found myself relying on this trick again today but couldn't find it documented anywhere. It kind of follows from the design of serde, but I suspect there are a...