]> git.lizzy.rs Git - rust.git/blob - crates/proc_macro_api/Cargo.toml
Diagnose unresolved derive macros
[rust.git] / crates / proc_macro_api / Cargo.toml
1 [package]
2 name = "proc_macro_api"
3 version = "0.0.0"
4 description = "TBD"
5 license = "MIT OR Apache-2.0"
6 edition = "2021"
7 rust-version = "1.57"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 object = { version = "0.28.3", default-features = false, features = [
14     "std",
15     "read_core",
16     "elf",
17     "macho",
18     "pe",
19 ] }
20 serde = { version = "1.0.136", features = ["derive"] }
21 serde_json = { version = "1.0.79", features = ["unbounded_depth"] }
22 tracing = "0.1.32"
23 memmap2 = "0.5.3"
24 snap = "1.0.5"
25
26 paths = { path = "../paths", version = "0.0.0" }
27 tt = { path = "../tt", version = "0.0.0" }
28 stdx = { path = "../stdx", version = "0.0.0" }
29 profile = { path = "../profile", version = "0.0.0" }
30 # Intentionally *not* depend on anything salsa-related
31 # base_db = { path = "../base_db", version = "0.0.0" }