We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1055f29 + 86821a1 commit f0e566bCopy full SHA for f0e566b
2 files changed
crates/proc-macro-srv-cli/src/lib.rs
@@ -2,5 +2,10 @@
2
//!
3
//! This module exposes the server main loop and protocol format for integration testing.
4
5
+#![cfg_attr(feature = "in-rust-tree", feature(rustc_private))]
6
+
7
+#[cfg(feature = "in-rust-tree")]
8
+extern crate rustc_driver as _;
9
10
#[cfg(feature = "sysroot-abi")]
11
pub mod main_loop;
crates/proc-macro-srv-cli/tests/legacy_json.rs
@@ -4,6 +4,10 @@
//! channels without needing to spawn the actual server and client processes.
#![cfg(feature = "sysroot-abi")]
12
mod common {
13
pub(crate) mod utils;
0 commit comments