switchback-protobuf 0.0.1-0.dev.0.ffcda32

Protobuf parser for the switchback framework.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]

//! `switchback-protobuf` CLI: parse .proto files into a switchback.
//!
//!   switchback-protobuf [--render mdbook] [--no-switchback] <input...>
//!
//! Always emits a switchback binary file unless `--no-switchback` is set. An optional
//! protoc-plugin stdin/stdout entry may be kept as a convenience. This binary
//! parses `.proto` files into a switchback.

fn main() {
    eprintln!("switchback-protobuf: unimplemented");
    std::process::exit(1);
}