## RFC: result_ffi_guarantees - Feature Name: `result_ffi_guarantees` - Start Date: 2023-02-15 - RFC PR: [rust-lang/rfcs#3391](https://github.com/rust-lang/rfcs/pull/3391) - Rust Issue: [rust-lang/rust#110503](https://github.com/rust-lang/r...
## Summary [summary]: #summary This RFC adds a "detailed" feature definition: ```toml [features] # same as `foo = []` foo = { enables = [] } ``` This is to unblock the following RFCs: - [Cargo feature descriptions](https://github.com/rust-l...
Safe implementation of parquet IO.
crate
v0.17.2
github.com
2023-04-13
## Summary [summary]: #summary This RFC adds support for single-file bin packages in cargo. Single-file bin packages are rust source files with an embedded manifest and a `main`. These files will be accepted by cargo commands as `--manifest...
Some procedure macro implementations for vsdb.
crate
v0.53.0
github.com
2023-03-25
A well-maintained fork of the dotenv crate
crate
v0.15.7
github.com
2023-03-22
Create extensions for types you don't own with extension traits but without the boilerplate.
crate
v1.2.0
github.com
2023-03-18
## Summary [summary]: #summary Let's make it more elegant to conditionally compile trait bounds by allowing cfg-attributes directly in where clauses. ## Motivation [motivation]: #motivation Currently, there is limited support for conditiona...
A Rust Library for basic parsing and handling of logical formulas(forked from coastalwhite)
crate
v0.1.0
github.com
2023-02-23
## Summary [summary]: #summary Add a `[lints]` table to `Cargo.toml` to configure reporting levels for rustc and other tool lints. ## Motivation [motivation]: #motivation Currently, you can configure lints through - `#[<level>(<lint>)]` or...
Zero setup cross compilation and cross testing
crate
v0.2.5
github.com
2023-02-04
Either acts as rayon or creates a single-threaded facade
crate
v0.1.1
github.com
2023-02-03
## Summary [summary]: #summary This RFC proposed to add a stable `#[diagnostic]` attribute namespace, which contains attributes to influence error messages emitted by the compiler. In addition it proposed to add a `#[diagnostic::on_unimplem...
Tiny simple JSON parser/generator
crate
v2.5.1
github.com
2022-12-31
Madsim's proc-macro.
crate
v0.2.12
github.com
2022-12-14
A helper macros implementation for Value Classes in Rust
crate
v0.3.2
github.com
2022-12-11
A helper macros implementation for Value Classes in Rust
crate
v0.3.2
github.com
2022-12-11
## Summary [summary]: #summary Enable upcasts from `dyn Trait1` to `dyn Trait2` if `Trait1` is a subtrait of `Trait2`. This RFC does not enable `dyn (Trait1 + Trait2)` for arbitrary traits. If `Trait1` has multiple supertraits, you can upca...
## Summary [summary]: #summary This RFC aims at providing rustdoc users the possibility to add visual markers to the rendered documentation to know under which conditions an item is available (currently possible through the following unstab...
## Summary [summary]: #summary We should start working on a Rust specification. ## Goal of this RFC The goal of this RFC is to reach consensus on: - Whether we want a specification, and (if so), - Some initial goals and non-goals, and - How...