Guillaume Desmottes
Guillaume Desmottes
Since #143 users can now manually pass a set of `Requires` and `Requires.private` fields for the generated pkg-config file. It's [been suggested](https://github.com/lu-zero/cargo-c/issues/139#issuecomment-733732329) to automatically populate those from `system-deps`'s metadata. We...
Using the same test app from #596 fetching `registry-1.docker.io/mcr.microsoft.com/mcr/hello-world` does not work: ``` RUST_LOG=oci_distribution=trace cargo run --example download-image -- registry-1.docker.io/mcr.microsoft.com/mcr/hello-world Finished dev [unoptimized + debuginfo] target(s) in 0.10s Running `/var/home/cassidy/dev/rust/krustlet/target/debug/examples/download-image...
Would be great to have an API to retrieve song lyrics, with proper time codes. Looks like it's possible as [this js package does it](https://www.npmjs.com/package/spotify-lyrics-api).
Trying to run `lenovo_fix.py` on Fedora Silverblue 34: ``` [W] Unable to obtain and validate kernel config. ``` The script tries to access `/boot/config-5.11.17-300.fc34.x86_64` which does not exists as Silverblue...
I'd like to port [some python code](https://github.com/deezer/spleeter/blob/master/spleeter/utils/estimator.py#L23) which is using the [tf.estimator.Estimator](https://www.tensorflow.org/guide/estimator) API. As I understand this API doesn't have Rust bindings yet.
Trying to build using Docker on Fedora 31. I have to use `podman` as Docker is no longer supported on Fedora. It's supposed to have the exact same cli but...
Hi! Logs produced by `ZLMediaKit` is currently a mix of English and Chinese, making them hard to read/understand for most users. Any chance you could translate them all to English?...
`AsyncContext::wait()` is [documented](https://docs.rs/actix/latest/actix/trait.AsyncContext.html#tymethod.wait) as : ``` Spawns a future into the context, waiting for it to resolve. ``` But according to my tests `wait()` is actually not blocking and return...
The [Authentication doc](https://github.com/librespot-org/librespot/blob/dev/docs/authentication.md) seems a bit outdated. I think it would be good to list each method from [Spotify Authorization's documentation](https://developer.spotify.com/documentation/general/guides/authorization/) and explain for each if they are supported (or...
```rust trait Mytrait: Downgrade { fn mushroom(&self) { let weak = self.downgrade(); let this = weak.upgrade().unwrap(); this.snake(); } fn snake(&self) {} } ``` fails with: ``` error[E0599]: no method named...