rust/crates/proc-macro-srv-cli/build.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
125 B
Rust
Raw Normal View History

2024-01-04 10:10:14 -06:00
//! This teaches cargo about our cfg(rust_analyzer)
fn main() {
println!("cargo:rustc-check-cfg=cfg(rust_analyzer)");
}