Alexey Gerasimov

Results 28 comments of Alexey Gerasimov

> Are you trying to clear the db on one developer's device? yes

Yeah, sure, I can reinstall app or even remove file on my dev device/emulator. But what if I already released application and then realized error. I cannot issue update that...

`Sink` trait in `futures 0.3` is placed under `futures-sink` crate, while `futures` reexprots it. Snafu already depends on futures (internal-dev-dep), should I hide extension trait behind feature flag, or make...

> You should be able to using `source(from)`. Can you check the [relevant section of the guide](https://docs.rs/snafu/0.4.2/snafu/guide/attributes/index.html#transforming-the-source) and see if that solves your problem? Yes, I have read that section,...

> When requesting help from people, I would encourage you to provide these examples yourself Sorry for that, I thought that my wishes are clear, but it seems that they...

N->1, yes, exactly what I mean. Thanks, I'll try extention trait. I think in SNAFU it may be possible to do that by form `#[snafu(from(dyn std::error::Error, Box::new))]` and then something...

This specification ```tla Spec == /\ Init /\ [][Next]_vars /\ \A self \in servers : WF_vars(server(self)) ``` Produced by translaction of this PlusCal algorithm ```tla -------------------------- MODULE mod -------------------------- CONSTANT...

> someone says add dependency at [target.'cfg(NOT_A_PLATFORM)'.dependencies] can work. It used to work in now-deprecated idea plugin, but currently it doesn't work there either

My current approach is to 1. Declare rustc deps under `[target.'cfg(unix)'.dependencies]` (I'm on macos so this target section is taken into account when IDEA imports the project) 2. "Refresh Cargo...