Vitalii Kryvenko
Vitalii Kryvenko
Suppose we have a crate `foo` ```toml name = "foo" version = "0.1.2" ``` and we have a crate `bar` ```toml name = "bar" version = "0.1.2" [dependencies] foo2 =...
It would be awesome if `cargo-machete` could provide pre-compiled binaries making it much faster to download from CI. See [`typos` CLI](https://github.com/crate-ci/typos/releases) that uses github Release to upload pre-compiled binaries of...
Would there be an interest to roll out a GitHub action for `cargo-udeps` so that adding this one to CI runs would be just a one-liner? There is an awesome...
Why not converting only `null` to `None` and leaving empty strings empty? The problem is loosing the information about whether the value was actually null or an empty string, neither...
The project is very cool for applications that can tolerate synchronous filesystem interaction! However, if one needs `async` io, `fs_err` can't help with this too much. As a workaround some...
Hi, thanks for an awesome tool! I am trying to use it in automation and would like to have an exhaustive list of all supported resource types for code generation...
Terraform has a lot of useful debug logs, including logging the AWS API requests it makes. With the usual `terraform` CLI it is possible to [set `TF_LOG` env variable](https://www.terraform.io/docs/internals/debugging.html) to...
This has appeared in my stress test of `create/remove_image` methods (https://github.com/fussybeaver/bollard/issues/190#issuecomment-1038940591). ```bash [2022-02-14T06:50:11Z DEBUG bollard::read] Decoding JSON line from stream: {"errorDetail":{"message":"error pulling image configuration: Get \"https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/39/39d290d0ed044e20481d8a02dfb84509e48426e99a7175d1412299db837818eb/data?verify=1644824401-2%2BNoBGk55KVtN7yebBVVT%2B%2Fmd1A%3D\": dial tcp: lookup production.cloudflare.docker.com:...
Suppose we have the following traits: ```rust trait Foo { /* */ } trait Bar: Foo { /* */ } ``` and we want to provide derive macros for both...
As for now, if you want to make a custom implementation of `serde::Serialize/Deserialize` you need to use [`custom(impl Display)`](https://docs.rs/serde/latest/serde/de/trait.Error.html#tymethod.custom) method to forward any errors along the way. The problem with...