Luca Palmieri
Luca Palmieri
As soon as https://github.com/bluss/ndarray/pull/491 is merged in `ndarray`.
Hello! We are switching to use a private registry alongside crates.io. The private registry (CloudSmith) is using HTTP basic authentication, but `cargo audit` does not seem to support it: ```...
Welcome! I created this repository as a discussion hub for the ML ecosystem in Rust, "following" a talk I gave at the Rust meetup in London ([slides](https://docs.google.com/presentation/d/1dOqqosLPtBixIVSvNy5-vLVAapfFUMm3sV4TR9v-Fkw/edit?usp=sharing)). I do believe...
Given `finalizer`'s current signature, the user is forced to use a closure to pass the `ctx` object coming from the top-level reconciliation routine (the first argument of `Controller::run`) into the...
I'd be happy to contribute a PR to support it if there is interest.
# Overview We add a new component, `rust-json-docs`, to distribute the JSON version of rustdoc's output for public compiler crates (i.e. `std`, `alloc`, `proc_macro`, `core` and `test`). As discussed in...
It is possible to access the `PackageId` attached to each crate in a workspace via `guppy`, but I can't see any functionality to generated a valid [package ID specification](https://doc.rust-lang.org/cargo/reference/pkgid-spec.html) starting...
This closes #371 - it turns out there was already an implementation, it was just commented out :grin:
### Problem `rustdoc` (on nightly) exposes an `--output-format` option to choose the format of the generated documentation: either HTML (the default) or JSON (the new unstable backend). If you choose...
# Proposal ## The problem `rustdoc`'s JSON output for a crate must often refer to items (e.g. functions, traits, types, etc.) defined in one or more its dependencies. Very little...