posemesh-domain-http 1.5.2

HTTP client library for interacting with AukiLabs domain data services, supporting both native and WebAssembly targets.
Documentation
1
2
3
4
5
6
7
8
fn main() {
    // Only generate scaffolding if the "uniffi" feature is enabled
    if std::env::var("CARGO_FEATURE_UNIFFI").is_ok() {
        println!("cargo:rerun-if-changed=src/domain-client.udl");
        uniffi::generate_scaffolding("src/domain-client.udl")
            .expect("failed to generate scaffolding");
    }
}