| 1 | [package] |
| 2 | name = "proc_macro" |
| 3 | version = "0.0.0" |
| 4 | edition = "2024" |
| 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 | rustc-literal-escaper = { version = "0.0.2" , features = ["rustc-dep-of-std" ] } |
| 13 | |
| 14 | [features] |
| 15 | default = ["rustc-dep-of-std" ] |
| 16 | rustc-dep-of-std = [] |
| 17 | |