Simple fixed and bounded ring buffers for audio PCM DSP.
crate
v0.11.0
github.com
2020-05-29
An abstraction for audio PCM DSP rate interpolation, including floor, linear and sinc.
crate
v0.11.0
github.com
2020-05-29
A DSP peak detection library generic over the rectifier.
crate
v0.11.0
github.com
2020-05-29
An iterator-like API for audio PCM DSP streams.
crate
v0.11.0
github.com
2020-05-29
RMS detection with configurable window for audio PCM DSP.
crate
v0.11.0
github.com
2020-05-29
Audio PCM DSP envelope detection with peak and RMS implementations.
crate
v0.11.0
github.com
2020-05-29
Conversions and operations for slices of audio PCM DSP samples and frames.
crate
v0.11.0
github.com
2020-05-29
A crate providing the fundamentals for working with audio PCM DSP.
crate
v0.11.0
github.com
2020-05-29
## Summary This RFC is to gather final feedback on stabilizing the new feature resolver in Cargo. This new feature resolver introduces a new algorithm for computing [package features][docs-old-features] that helps to avoid some unwanted uni...
# Major Change Proposal RFC - Feature Name: N/A - Start Date: 2020-05-07 - RFC PR: [rust-lang/rfcs#2904](https://github.com/rust-lang/rfcs/pull/2904) - Rust Issue: N/A ## Summary [summary]: #summary Introduce the **major change process** fo...
Custom derive for `trackable` crate
crate
v1.0.0
github.com
2020-05-05
## Summary [summary]: #summary Adds a new syntactical element called an "inline `const`", written as `const { ... }`, which instructs the compiler to execute the contents of the block at compile-time. An inline `const` can be used as an exp...
## Summary [summary]: #summary The RFC proposes a plan to adopt rust-analyzer as Rust's official LSP implementation. The transition to rust-analyzer will take place in a few stages: * **Feedback** -- encourage people to use rust-analyzer an...
## Summary [summary]: #summary We allow destructuring on assignment, as in `let` declarations. For instance, the following are now accepted: ```rust (a, (b.x.y, c)) = (0, (1, 2)); (x, y, .., z) = (1.0, 2.0, 3.0, 4.0, 5.0); [_, f, *baz(), a[...
Basic SIMD-accelerated geometry/linear algebra
crate
v0.5.1
github.com
2020-04-17
## Summary [summary]: #summary Deduplicate common dependency and metadata directives amongst a set of workspace crates in Cargo with extensions to the `[workspace]` section in `Cargo.toml`. ## Motivation [motivation]: #motivation Cargo has...
An implementation of Keccak derived functions.
crate
v2.0.2
github.com
2020-04-01
## Summary [summary]: #summary This RFC proposes a policy for managing permissions to the [Rust-Lang GitHub Organization](https://www.github.com/rust-lang) and repositories within this organization. This RFC was written in consultation with...
# Rust 2020 Roadmap - Feature Name: N/A - Start Date: 2020-01-22 - RFC PR: [rust-lang/rfcs#2857](https://github.com/rust-lang/rfcs/pull/2857) - Rust Issue: N/A ## Summary [summary]: #summary Lays out the Rust roadmap for 2020 in pursuit of...
## Summary [summary]: #summary This RFC proposes a new function attribute, `#[instruction_set(set)]` which allows you to declare the instruction set to be used when compiling the function. It also proposes two initial allowed values for the...