google_cloud_iot_jwt/
lib.rs

1#![cfg_attr(not(test), no_std)]
2
3mod jwt_es256;
4
5pub use jwt_es256::create_google_jwt_es256;
6pub use jwt_es256::JWT_ES256_MAX_LENGTH;
7
8#[cfg(test)]
9mod readme_example_test;