mqtt5 0.31.2

Complete MQTT v5.0 platform with high-performance async client and full-featured broker supporting TCP, TLS, WebSocket, authentication, bridging, and resource monitoring
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod jwks;
pub mod jwt;
pub mod jwt_federated;
pub mod plain;
pub mod scram;

pub use jwks::{JwkKey, JwksCache, JwksEndpointConfig, JwksError};
pub use jwt::{JwtAuthProvider, JwtClaims, JwtHeader, JwtVerifier};
pub use jwt_federated::FederatedJwtAuthProvider;
pub use plain::{PasswordCredentialStore, PlainAuthProvider};
pub use scram::{
    generate_scram_credential_line, generate_scram_credential_line_with_iterations,
    FileBasedScramCredentialStore, ScramCredentialStore, ScramCredentials, ScramSha256AuthProvider,
};