1[package]
2name = "proc_macro"
3version = "0.0.0"
4edition = "2024"
5
6[dependencies]
7std = { path = "../std" }
8# Workaround: when documenting this crate rustdoc will try to load crate named
9# `core` when resolving doc links. Without this line a different `core` will be
10# loaded from sysroot causing duplicate lang items and other similar errors.
11core = { path = "../core" }
12rustc-literal-escaper = { version = "0.0.2", features = ["rustc-dep-of-std"] }
13
14[features]
15default = ["rustc-dep-of-std"]
16rustc-dep-of-std = []
17
Learn Rust with the experts
Find out more