autoschematic-core 0.10.0

Core shared functionality for Autoschematic: workflow engine, state management, and Git integrations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

// A Connector Manifest file (connector.ron)
// defines the type of connector (binary-tarpc, binary-grpc, etc etc)
// and specifies the executable path.
// Connector manifests should exist at the root of a repo.

#[derive(Debug, Default, Deserialize, Serialize)]
pub struct ConnectorManifest {
    pub name: String,
    pub r#type: String,
    pub executable_name: String,
}