]> git.lizzy.rs Git - rust.git/blob - crates/proc_macro_api/Cargo.toml
Merge #10207
[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 = "2018"
7
8 [lib]
9 doctest = false
10
11 [dependencies]
12 serde = { version = "1.0", features = ["derive"] }
13 serde_json = { version = "1.0", features = ["unbounded_depth"] }
14 tracing = "0.1"
15 memmap2 = "0.3.0"
16 snap = "1.0"
17
18 paths = { path = "../paths", version = "0.0.0" }
19 tt = { path = "../tt", version = "0.0.0" }
20 stdx = { path = "../stdx", version = "0.0.0" }
21 profile = { path = "../profile", version = "0.0.0" }
22 # Intentionally *not* depend on anything salsa-related
23 # base_db = { path = "../base_db", version = "0.0.0" }
24
25 [dependencies.object]
26 version = "0.26"
27 default-features = false
28 features = [ "std", "read_core", "elf", "macho", "pe" ]