scratchstack-wrapper-aws-c-auth 0.1.0-alpha.7

Scratchstack Rust wrapper around the aws-c-auth library
1
2
3
4
5
6
7
8
9
10
11
12
#[test]
fn test_init_uninit() {
    use {
        crate::{aws_auth_library_clean_up, aws_auth_library_init},
        scratchstack_wrapper_aws_c_common::aws_default_allocator,
    };

    unsafe {
        aws_auth_library_init(aws_default_allocator());
        aws_auth_library_clean_up();
    }
}