otp-std 0.2.3

Generating and verifying One-Time Passwords.
Documentation
1
2
3
4
5
6
//! URL queries.

use std::{borrow::Cow, collections::HashMap};

/// Represents URL queries.
pub type Query<'q> = HashMap<Cow<'q, str>, Cow<'q, str>>;