blob: 72cb4e4166f8e968f13b5431051e8d78b30cba5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
[package]
name = "proc_macro"
version = "0.0.0"
edition = "2024"
[dependencies]
std = { path = "../std" }
# Workaround: when documenting this crate rustdoc will try to load crate named
# `core` when resolving doc links. Without this line a different `core` will be
# loaded from sysroot causing duplicate lang items and other similar errors.
core = { path = "../core" }
|