rsasl 2.3.0

The Rust SASL framework, aimed at both middleware-style protocol implementation and application code. Designed to make SASL authentication simple and safe while handing as much control to the user as possible.
Documentation
use super::{client, server};
use crate::alloc::boxed::Box;
use crate::mechname::Mechname;
use crate::registry::{Matches, Mechanism, Named, Side};

#[cfg_attr(
    feature = "registry_static",
    linkme::distributed_slice(crate::registry::MECHANISMS)
)]
/// Mechanism description for GSSAPI
///
/// See the [`gssapi`](super) module documentation for details and usage.
pub static GSSAPI: Mechanism = Mechanism {
    mechanism: Mechname::const_new(b"GSSAPI"),
    priority: 300,
    client: Some(|| Ok(Box::new(client::Gssapi::default()))),
    server: Some(|_sasl| Ok(Box::new(server::Gssapi::default()))),
    first: Side::Client,

    select: |_| Some(Matches::<Select>::name()),
    offer: |_| true,
};

struct Select;
impl Named for Select {
    fn mech() -> &'static Mechanism {
        &GSSAPI
    }
}