shellcanvas-adapter-sdk 0.1.0

Versioned process protocol and concurrent server for ShellCanvas connection adapters
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: MPL-2.0
//! Build a native connection adapter without linking the ShellCanvas desktop.
//! Standard input/output are reserved for the versioned protocol.
pub mod package;
mod server;
pub mod tools;
pub mod wire;
pub use async_trait::async_trait;
pub use serde_json::{self, json, Value};
pub use server::{run, serve, Adapter, CallError, RequestContext};
pub use wire::ServiceDescriptor;