Files
RustCrypto-signatures/tests
Tony Arcieri 7fa56f960f ed25519: add (doctested!) ed25519-dalek usage example (#167)
Adds a rustdoc example which completely demonstrates how to use code
written generically with `ed25519::Signature` and `signature::{Signer,
Verifier}` with the concrete `ed25519_dalek::{Keypair, PublicKey}`
types.

Unlike the previous example, which hardly showed anything, this commit
also pulls in `ed25519-dalek` as a `[dev-dependency]`, which makes it
possible to actually doctest the example.
2020-09-11 15:20:39 -07:00
..

no_std tests

This directory and associated CI configs in .github is a workaround for issues with the cargo resolver activating features from dev-dependencies which cause std to get linked in a release target.

It contains small test crates in their own isolated workspace which ensure that these features are not activated when linking and therefore that the crates will link in no_std environments when consumed as a dependency of another no_std-compatible crate.

Here are upstream issues tracking the problem: