github-copilot-sdk 1.0.7

Rust SDK for programmatic control of the GitHub Copilot CLI via JSON-RPC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "bundled-in-process")]
#[path = "build/in_process.rs"]
mod implementation;

#[cfg(not(feature = "bundled-in-process"))]
#[path = "build/out_of_process.rs"]
mod implementation;

fn main() {
    implementation::main();
}