I'd like to nominate sec - simple and useful
I think the "disclaimer" there is important:
While sec usually does a good job from preventing accidentally leaks through logging mistakes, it currently does not protect the actual memory (while not impossible, this requires a lot of extra effort due to heap allocations).
If protecting cryptographic secrets in-memory from stackdumps and similar is a concern, have a look at the secrets crate or similar crates.
Besides the secrets crate, there's also secstr that does something similar.
@imp do you know where the repo for sec
is? I'm wanting to open a couple issues/PRs but the owner never filled in the repository
or homepage
fields in his Cargo.toml
. I wasn't able to find it on GitHub either.
I'd like to nominate crossbeam-channel. It's young and in active development, but deserves more hype.
Whoa!! Super nice! I'll integrate this into my project to replace mpsc and see how it does.
This looks awesome! I will definitely check it out for usage in my project(s)
I propose artifact for next week!
It is the open source design documentation tool for everybody.
I'd very much like to nominate https://github.com/autozimu/LanguageClient-neovim. It's not on crates.io, but in my book that doesn't matter. What really makes this outstanding is @autozimu's support, fast response time and time-to-bugfix, his willingness to dive into problems from the interaction with other plugins and the language servers, and to raise issues and interact with the maintainers of those. Three thumbs up!
If I may, sec
author here:
I think the “disclaimer” there is important:
...
Besides the secrets crate, there’s also secstr that does something similar.
I would like to point out that both secstr
and secrets
solve slightly different issues. The data protected by sec
is usually sent across the network and passed around among different applications (e.g. a token authorizing a client), e.g. it could reasonably be used as a key for a HashMap
:
Moving non-heap allocated data from the stack into a HashMap will cause it to be copied at least once, with no way (to my knowledge) of reliably ensuring that the resulting copy will not be overwritten. One solution for this problem is passing in references and storing a single copy of the confidential information on the heap, where scrubbing is much easier.
This is what secstr
seems to do (by wrapping a Vec). The secrets
crate also does a much better job at protecting data than sec
in a similar vein. secstr
requires linking against an external C library (sodium).
Both of these are different use cases though: sec
is not written to protect your GPG private key or Bitcoin wallet, which will never leave your machine. Instead, it protects things like your login token which will be serialized and sent as a HTTP-header (with probably one or two extra copies being made somewhere in the stack already), but should not be exposed when a dev turns on logging to see why there are currently so many 500s. It does so with zero overhead (outside of printing), so requiring additional heap allocations is not acceptable. Finally, sec
works with any type and requires almost no effort to add.
The disclaimer is in place to ensure no one accidentally uses sec
when they really need to use secrets
instead. Maybe I should add this Post to the README.md
as well? Feel free to send me additional feedback (possibly as a direct message to not derail this thread), I am very happy to discuss and learn about other opinions on this.
ordermap A hash table (associative array) where the iteration order does not depend on the key or the hash, only insertion and removal.
In particular I find this to be a lifesaver when testing since I can make assertions and the diff (with pretty_assertions
) is easy to read if I just called .sort()
on both of the inputs first.
Compared to HashMap's which are completely unreadable since the keys can be in literally any order.
I haven't seen this mentioned anywhere so far: rust-semverver.
It compares the local version of the crate you are developing with the latest version on crates.io and will print out the major, minor and breaking changes in your local version. While it's not completely bug-free yet, it was moved to the nursery today.