Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
//! Library interface for `proc-macro-srv-cli`.
//!
//! This module exposes the server main loop and protocol format for integration testing.

#![cfg(feature = "sysroot-abi")]
#![feature(rustc_private)]

extern crate rustc_driver as _;

pub mod main_loop;