msrd0
msrd0
Context: https://github.com/msrd0/tg2mx_bot/blob/d64de13b71da5e2f0a7b5d366648158bf5d14582/src/mxbot/state.rs#L174-L178
Hm well I foolishly assumed that sigterm is handled nicely by rust by default, i.e. that it runs stuff like `Drop` impls and then exits. But apparently it does not...
For me, not only ctrl+D does not properly send end-of-input, but ctrl+C also does not quit. Other control keys like ctrl+A (that's jump to begining of the line in bash)...
I believe this is a known problem, at least they mention it in the changelog for 0.12.0. This however became really annoying lately as more and more media is authentication-only...
@brosasaki The problem exists starting version 0.12. On linux, you can compile with #1838 to fix it, I'm using that patch for months now and I'm quite happy with it.
I wish arch included the patch by default as well, in the meantime there is https://aur.archlinux.org/packages/nheko-scrollfix
Hey, author of lottie-rs here. I can tell you that lottie-rs needs to dynamically link `libclang.so` during compile time, and expects `pkg-config` to find some form of rlottie library on...
> I have to build first all dependencies, partly from scratch with the appropiate build tools, before I can start building mstickereditor. This is correct but let me add some...
Thanks for the PR. Please fix the formatting (run `cargo +nightly fmt --all`) so the CI is happy and I can merge this PR
I'm not sure I understand the need for this change. Procedural macros are, afaik, just some special sort of library, and should be covered under library targets. Further, a package/crate/whateveryoucallit...