1[package]
2name = "proc_macro"
3version = "0.0.0"
4edition = "2021"
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" }
12