autoschematic-core 0.6.0

Core shared functionality for Autoschematic.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


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,
}