opensaml 0.2.1

Maintained compatibility re-export of saml-rs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]
//! Maintained compatibility re-export of [`saml-rs`](https://crates.io/crates/saml-rs).
//!
//! ```
//! use opensaml::{OpenSamlError, Saml, Sp};
//!
//! let _: Option<Saml<Sp>> = None;
//! #[allow(deprecated)]
//! let _: Option<OpenSamlError> = None;
//! ```

pub use saml_rs::*;

/// Deprecated compatibility name for [`SamlError`].
#[deprecated(since = "0.2.0", note = "use `SamlError` instead")]
pub type OpenSamlError = saml_rs::SamlError;