rust-analyzer/crates/proc_macro_api/Cargo.toml

20 lines
351 B
TOML
Raw Normal View History

2020-03-18 09:47:59 +00:00
[package]
edition = "2018"
2020-08-13 10:07:28 +00:00
name = "proc_macro_api"
2020-03-18 09:47:59 +00:00
version = "0.1.0"
authors = ["rust-analyzer developers"]
publish = false
2020-07-14 01:57:26 +00:00
license = "MIT OR Apache-2.0"
2020-03-18 09:47:59 +00:00
[lib]
doctest = false
[dependencies]
2020-03-26 21:08:26 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2020-03-26 20:26:34 +00:00
log = "0.4.8"
crossbeam-channel = "0.4.0"
2020-03-28 12:52:45 +00:00
jod-thread = "0.1.1"
2020-08-13 10:07:28 +00:00
tt = { path = "../tt" }