Stargateur
Stargateur
here my build.rs ``` rust extern crate cmake; fn main() { let dst = cmake::Config::new("librtmp").build_target("rtmp").build(); if cfg!(any(windows)) { println!("cargo:rustc-link-search=native={}/build/Release", dst.display()); } else { println!("cargo:rustc-link-search=native={}/build", dst.display()); } println!("cargo:rustc-link-lib=static=rtmp"); } ``` if...
```rust CargoMetadata { stderr: String, } ``` [`CargoMetadata` ](https://docs.rs/cargo_metadata/0.14.1/cargo_metadata/enum.Error.html) is not usable to give a precise error to the user, notably on program like [bacon](https://github.com/Canop/bacon/pull/60) that end up doing a...
About https://github.com/jaemk/cached/issues/49 This allow to iterate over SizedCache, - [x] Add Iter for SizedCache ? - [ ] Add Iter for TimedCache ? - [ ] Add Iter for UnbouncedCache...
About https://github.com/jaemk/cached/issues/49 This is a draft of a serde feature 1. This is a strait forward implementation 2. We could maybe do custom serialize and deserialize implementation to optimize the...
I need to serialize the cache: 1. There is currently no way to iterate with Cached trait 2. Without GATs I don't think we could have an associate Iter type...
All method on the Cached trait are named `cache_*`, it's very redundant. I think we should remove this noise.
My use case of this crate is as follow: ```rust bounded_integer! { #[repr(libc::c_int)] pub struct TimeOut { -1..=libc::c_int::MAX } } bounded_integer! { #[repr(usize)] pub struct MaxEvents{ 1..=libc::c_int::MAX as usize }...
it's very hard to understand how to use this crate.
I would like to be able to generate a graph for a structure. I have a heavy numbers of structure for a parsing crate that contains each other a lot,...
I would like to use https://docs.docker.com/engine/reference/commandline/stack_deploy/ but I don't see in https://docs.docker.com/engine/api/v1.41/