ordian
ordian
This is a regression introduced in #484. Opened https://github.com/frewsxcv/rust-crates-index/issues/65 upstream. > cargo add failed in my machine with message Command failed due to unhandled error: invalid version 0 on git_proxy_options;...
This functionality seems useful, but I'm not convinced about adding new commands for that and not e.g. using `--patch-crates-io` flag. A PR would be accepted, but we need to agree...
Hey @nrc, I like the idea of the command, but I'm not sure cargo-edit is the right place for it. The reason is it's probably won't reusing much code in...
@matklad thanks for the reply. If I understand correctly, an attribute is only capable of replacing invocation of one function with a code snippet, whereas scripts are more flexible and...
Related to that, sequoia-openpgp uses encrypted memory for storing secret keys [link]: > This implementation on the other hand, derives a sealing key from a large area of memory, the...
Curious how other parsers handle that (e.g. in other languages). It seems toml spec specifies the date should follow the https://datatracker.ietf.org/doc/html/rfc3339. And if chrono panics on construction instead of returning...
It makes sense to me. Go for it :)
Addding a comment to a decor is valid for some cases, but not for keys. I don't think there is a way to solve this problem in general, other than...
The issue is about stackoverflow, not OOM. A solution to this problem is to use an explicit stack (using a vec) instead of recursion.
Well, by OOM, people usually mean Out Of (heap) Memory. And one of the differences between the stack and the heap is that the default stack size is fixed and...