mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 04:44:57 +00:00
Add extern crate rustc_driver to proc-macro-srv-cli
This commit is contained in:
parent
ab2286935d
commit
d480525ce8
3 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
|||
//! A standalone binary for `proc-macro-srv`.
|
||||
//! Driver for proc macro server
|
||||
#![cfg_attr(feature = "in-rust-tree", feature(rustc_private))]
|
||||
#[cfg(feature = "in-rust-tree")]
|
||||
extern crate rustc_driver as _;
|
||||
|
||||
use std::io;
|
||||
|
||||
fn main() -> std::io::Result<()> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue