74 releases (21 stable)

3.2.0 Jul 8, 2024
3.0.0 Jan 11, 2024
2.0.1 Jan 2, 2024
2.0.0 Jun 30, 2023
0.6.0 Nov 10, 2020

#223 in Algorithms

Download history 31710/week @ 2024-04-02 29663/week @ 2024-04-09 32006/week @ 2024-04-16 39306/week @ 2024-04-23 33754/week @ 2024-04-30 38198/week @ 2024-05-07 44810/week @ 2024-05-14 38521/week @ 2024-05-21 40868/week @ 2024-05-28 34652/week @ 2024-06-04 42958/week @ 2024-06-11 43475/week @ 2024-06-18 43723/week @ 2024-06-25 35300/week @ 2024-07-02 41763/week @ 2024-07-09 33233/week @ 2024-07-16

160,954 downloads per month
Used in 181 crates (3 directly)

Apache-2.0…

9KB
103 lines

cap-rand

Capability-based random number generators

Github Actions CI Status crates.io page docs.rs docs

The cap-rand crate provides a capability-based interface to random number generators via the rand crate.


lib.rs:

Capability-based random number generators

This corresponds to rand.

Capability-based APIs represent access to external resources as values which can be passed around between different parts of a program.

Two notable features are the OsRng and CapRng types, which wrap up access to the operating system entropy source in capability values.

This crate uses the existing rand::SeedableRng trait rather than having its own version, however while rand::SeedableRng is mostly just a pure interface, it provides a from_entropy function which directly reads from the operating system entropy source. To preserve the capability-based interface, avoid using rand::SeedableRng's from_entropy function on any of the types that implement that trait; use std_rng_from_entropy instead.

Dependencies

~320KB