Daniel Alley
Daniel Alley
As I'm sure you know, in November 2017, the Firefox 57 release will disable all addon APIs with the exception of the new WebExtensions API. Are there any plans for...
When using ```sphinx-build -j auto```: ```the sphinxcontrib.httpdomain extension does not declare if it is safe for parallel reading, assuming it isn't - please ask the extension author to check and...
RPM tags only use unsigned integer types despite calling them "int": https://github.com/rpm-software-management/rpm/blob/dd4f2c68a0059d66b1807d504faaeed84973d49a/docs/manual/tags.md#scalar-types= https://github.com/rpm-software-management/rpm/blob/c4a6a3a9a6b664fd7b7f3d06dd23b93d0b1b4a1b/include/rpm/rpmtd.h#L223= But many accessors e.g. `get_epoch()`, `get_install_time()` return signed integers and many structs (e.g. `IndexData`) are using signed...
Seems like it's missing a few `#[cfg(feature=...)]` annotations. ``` error[E0432]: unresolved import `crate::signature` --> /home/dalley/.cargo/registry/src/github.com-1ecc6299db9ec823/rpm-rs-0.8.1/src/rpm/package.rs:12:5 | 12 | use crate::signature; | ^^^^^^^^^^^^^^^^ no `signature` in the root error[E0433]: failed to...
Maybe this is non-trivial, but just throwing out the idea: It would be nice if it was possible to pull in the functionality for reading and verifying signatures RPMs without...
It would be nice to provide a couple of examples of using varisat in addition to the standard API documentation, like https://github.com/luteberget/minisat-rs/ does.
Rust doesn't inline across crate boundaries unless you use `#[inline]` or LTO, whereas *inside* the crate it can inline anything it thinks might be worthwhile. That means that a benchmark...
closes #3524
[noissue]