mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-20 03:27:30 +00:00

Revert <https://github.com/rust-lang/rust/pull/138084> to buy time to consider options that avoids breaking downstream usages of cargo on distributed `rustc-src` artifacts, where such cargo invocations fail due to inability to inherit `lints` from workspace root manifest's `workspace.lints` (this is only valid for the source rust-lang/rust workspace, but not really the distributed `rustc-src` artifacts). This breakage was reported in <https://github.com/rust-lang/rust/issues/138304>. This reverts commit48caf81484
, reversing changes made toc6662879b2
.
54 lines
1.3 KiB
Rust
54 lines
1.3 KiB
Rust
//! The Rust Abstract Syntax Tree (AST).
|
|
//!
|
|
//! # Note
|
|
//!
|
|
//! This API is completely unstable and subject to change.
|
|
|
|
// tidy-alphabetical-start
|
|
#![allow(internal_features)]
|
|
#![doc(
|
|
html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
|
|
test(attr(deny(warnings)))
|
|
)]
|
|
#![doc(rust_logo)]
|
|
#![feature(associated_type_defaults)]
|
|
#![feature(box_patterns)]
|
|
#![feature(if_let_guard)]
|
|
#![feature(let_chains)]
|
|
#![feature(negative_impls)]
|
|
#![feature(never_type)]
|
|
#![feature(rustdoc_internals)]
|
|
#![feature(stmt_expr_attributes)]
|
|
#![warn(unreachable_pub)]
|
|
// tidy-alphabetical-end
|
|
|
|
pub mod util {
|
|
pub mod case;
|
|
pub mod classify;
|
|
pub mod comments;
|
|
pub mod literal;
|
|
pub mod parser;
|
|
pub mod unicode;
|
|
}
|
|
|
|
pub mod ast;
|
|
pub mod ast_traits;
|
|
pub mod attr;
|
|
pub mod entry;
|
|
pub mod expand;
|
|
pub mod format;
|
|
pub mod mut_visit;
|
|
pub mod node_id;
|
|
pub mod ptr;
|
|
pub mod token;
|
|
pub mod tokenstream;
|
|
pub mod visit;
|
|
|
|
pub use self::ast::*;
|
|
pub use self::ast_traits::{AstDeref, AstNodeWrapper, HasAttrs, HasNodeId, HasTokens};
|
|
|
|
/// Requirements for a `StableHashingContext` to be used in this crate.
|
|
/// This is a hack to allow using the `HashStable_Generic` derive macro
|
|
/// instead of implementing everything in `rustc_middle`.
|
|
pub trait HashStableContext: rustc_span::HashStableContext {}
|