rust/crates/proc_macro_api/Cargo.toml

22 lines
520 B
TOML
Raw Normal View History

2020-03-18 10:47:59 +01:00
[package]
2020-08-13 12:07:28 +02:00
name = "proc_macro_api"
2020-08-13 17:42:52 +02:00
version = "0.0.0"
description = "TBD"
2020-07-14 03:57:26 +02:00
license = "MIT OR Apache-2.0"
2020-08-13 17:42:52 +02:00
authors = ["rust-analyzer developers"]
edition = "2018"
2020-03-18 10:47:59 +01:00
[lib]
doctest = false
[dependencies]
2020-03-26 22:08:26 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["unbounded_depth"] }
2020-03-26 21:26:34 +01:00
log = "0.4.8"
2020-10-13 15:57:01 +02:00
crossbeam-channel = "0.5.0"
2020-03-28 13:52:45 +01:00
jod-thread = "0.1.1"
2020-08-13 12:07:28 +02:00
2020-08-24 10:25:19 +02:00
tt = { path = "../tt", version = "0.0.0" }
base_db = { path = "../base_db", version = "0.0.0" }
2021-02-01 20:24:09 +01:00
stdx = { path = "../stdx", version = "0.0.0" }