Tv
Tv
Having spent a day looking at the source, I'm less enthusiastic. Changing the resulting data structure is simple enough, but the parser is heavily built on the idea that all...
> by calling `commit` inside the `sled` transactions in the database operations That means you've reduced `sled` write performance to the level of Tantivy, which is designed for large batch...
Three years later, here's an update to https://github.com/rust-lang/cargo/issues/383#issuecomment-720873790: For anyone who doesn't want to add another dependency, this works: ```rust #[cfg(doctest)] #[doc = include_str!("../README.md")] struct ReadMe; ``` Note, it can't...
And here's the official documentation for it: https://doc.rust-lang.org/rustdoc/write-documentation/documentation-tests.html#include-items-only-when-collecting-doctests Considering that many README.md's likely contain broken code and not-even-intended-to-be-complete examples, is this amount of opt-in good enough; can this issue be...
It's not the `Decode` that helps, it's the `Token`, but yes. The internals of this library could be simplified with `Token`. The API here is still valid -- note how...
Unfortunately, "valid" is not a criteria that can be programmed reasonably. What if you accidentally replaced your ssh public key with the key of a stranger? The only fix that...
FWIW the syscall approach @benburkert mentions is implemented in https://github.com/kavu/go_reuseport without any of the extra complexity that comes from wanting to support `Dial`.
@seven1240 https://prettier.io/docs/en/ignore.html#range-ignore
This would also force you to deal with error handling for network errors. Right now it seems the client-side Rust functions just have no concept of not being able to...
This crate depends on x11-clipboard ^0.3, which depends on an old version of xcb, which won't build cleanly in a sandbox (writes to source tree), and needs python to build...