1 | [package] |
---|---|
2 | name = "proc_macro" |
3 | version = "0.0.0" |
4 | edition = "2021" |
5 | |
6 | [dependencies] |
7 | std = { 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. |
11 | core = { path = "../core"} |
12 |