summary refs log tree commit diff
path: root/library/proc_macro/Cargo.toml
blob: 1d79246356a35e11ab4f7b73f13f38fd7f9495f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[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" }
rustc-literal-escaper = { version = "0.0.2", features = ["rustc-dep-of-std"] }

[features]
default = ["rustc-dep-of-std"]
rustc-dep-of-std = []