port-sdk 0.1.0

Rust SDK for Port APIs.
Documentation
1
2
3
4
5
6
7
8
use port_sdk::{port_schema_sha256, raw_schema};

#[test]
fn schema_is_embedded() {
    let spec = raw_schema();
    assert!(spec.contains("openapi"));
    assert_eq!(port_schema_sha256().len(), 64);
}