aws-mpl-cxx 0.1.0

C++ bindings for aws-mpl.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#include "aws-mpl-cxx/src/lib.rs.h"
#include "rust/cxx.h"
#include <iostream>

int main() {
    auto config = default_client_config();
    auto obj = create_kms_client(config);
    delete_kms_client(std::move(obj));
    std::cout << "Success!\n";
    return 0;
}