dalek-cryptography / curve25519-dalek

A pure-Rust implementation of group operations on Ristretto and Curve25519
Other
850 stars 416 forks source link

Indicate that the rand_core feature is required #641

Closed beyarkay closed 3 months ago

beyarkay commented 3 months ago

The main example doesn't explicitly indicate that the rand_core feature is required, and rust gives confusing error messages if you don't include it. This change simply adds a line reminding the new user of the crate to include the rand_core feature.

Closes #633