Lukas Schmierer
Lukas Schmierer
The following code ```Rust pub fn sinc( source: S, source_rate: f64, target_rate: f64, ) -> impl Signal { let ring_buffer = ring_buffer::Fixed::from([[0]; 100]); let sinc = Sinc::new(ring_buffer); source.from_hz_to_hz(sinc, source_rate, target_rate)...
- [x] [ecs](https://github.com/HeroesGrave/ecs-rs) - [x] [specs](https://github.com/slide-rs/specs) - [x] [recs](https://github.com/andybarron/rustic-ecs) - [x] [trex](https://github.com/rcolinray/trex) - [x] [constellation](https://github.com/TomGillen/constellation) - [ ] [tinyecs](https://github.com/not-fl3/tinyecs)
My use case is similar to https://github.com/serde-rs/json/issues/896. I am serializing JSON values like `1`, `0.123` or `{ "a": "b" }` into the following enum: ```Rust enum NumberOrMap { Number(String), Map(HashMap),...
In my case I am using the dependency with different features depending on a feature of my crate. https://github.com/lschmierer/sacn/blob/master/Cargo.toml#L16 This results in doc.rs showing the `uuid` dependency two times. https://docs.rs/crate/sacn/0.4.4
Hi, thanks for providing this nice project. We are currently investigating if we can use this to automatically setup some One-to-One NAT rules. It seems support for One-to-One NAT rules...
Hi, I am using `SqsOutboundMetadata.builder().queueUrl(sqsQueueUrl)` to define the target queue based on the data at runtime. Therefor I do not want to set a queue name in the outgoing channel...