rust/crates/proc_macro_api/Cargo.toml

26 lines
715 B
TOML
Raw Normal View History

2020-03-18 04:47:59 -05:00
[package]
2020-08-13 05:07:28 -05:00
name = "proc_macro_api"
2020-08-13 10:42:52 -05:00
version = "0.0.0"
description = "TBD"
2020-07-13 20:57:26 -05:00
license = "MIT OR Apache-2.0"
2020-08-13 10:42:52 -05:00
authors = ["rust-analyzer developers"]
edition = "2018"
2020-03-18 04:47:59 -05:00
[lib]
doctest = false
[dependencies]
2020-03-26 16:08:26 -05:00
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["unbounded_depth"] }
2020-03-26 15:26:34 -05:00
log = "0.4.8"
2020-10-13 08:57:01 -05:00
crossbeam-channel = "0.5.0"
2020-03-28 07:52:45 -05:00
jod-thread = "0.1.1"
memmap2 = "0.2.0"
2021-05-24 08:35:52 -05:00
object = { version = "0.24", default-features = false, features = ["std", "read_core", "elf", "macho", "pe"] }
snap = "1.0"
2020-08-13 05:07:28 -05:00
2020-08-24 03:25:19 -05:00
tt = { path = "../tt", version = "0.0.0" }
base_db = { path = "../base_db", version = "0.0.0" }
2021-02-01 13:24:09 -06:00
stdx = { path = "../stdx", version = "0.0.0" }
profile = { path = "../profile", version = "0.0.0" }