neust 0.0.1

NEU CAS binding for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Several implementations for [`AuthMethod`](crate::session::AuthMethod).

pub use credential::Credential;
pub use token::Token;
#[cfg(feature = "wechat")]
pub use wechat::Wechat;

mod credential;
mod token;
#[cfg(feature = "wechat")]
mod wechat;