Skip to content

Commit

Permalink
Parse_macro_input module no longer contains any APIs other than the m…
Browse files Browse the repository at this point in the history
…acro
  • Loading branch information
dtolnay committed Mar 14, 2023
1 parent 3c292f7 commit ca39963
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib.rs
Expand Up @@ -420,14 +420,12 @@ pub use crate::op::{BinOp, UnOp};
#[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))]
pub mod parse;

// Not public API except the `parse_macro_input!` macro.
#[cfg(all(
not(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "wasi"))),
feature = "parsing",
feature = "proc-macro"
))]
#[doc(hidden)]
pub mod parse_macro_input;
mod parse_macro_input;

#[cfg(all(feature = "parsing", feature = "printing"))]
mod parse_quote;
Expand Down

0 comments on commit ca39963

Please sign in to comment.