]> git.lizzy.rs Git - rust.git/blobdiff - crates/proc_macro_api/Cargo.toml
minor: nicer way to defeat disjoint closure captures
[rust.git] / crates / proc_macro_api / Cargo.toml
index 75f67a22ed57dc0772562f9fa38dddc88d22af38..a0fd10441f21b767b21dd57c800bf21fe5392612 100644 (file)
@@ -3,7 +3,6 @@ name = "proc_macro_api"
 version = "0.0.0"
 description = "TBD"
 license = "MIT OR Apache-2.0"
-authors = ["rust-analyzer developers"]
 edition = "2018"
 
 [lib]
@@ -11,9 +10,21 @@ doctest = false
 
 [dependencies]
 serde = { version = "1.0", features = ["derive"] }
-serde_json = "1.0"
+serde_json = { version = "1.0", features = ["unbounded_depth"] }
 log = "0.4.8"
-crossbeam-channel = "0.4.0"
+crossbeam-channel = "0.5.0"
 jod-thread = "0.1.1"
+memmap2 = "0.3.0"
+snap = "1.0"
 
+paths = { path = "../paths", version = "0.0.0" }
 tt = { path = "../tt", version = "0.0.0" }
+stdx = { path = "../stdx", version = "0.0.0" }
+profile = { path = "../profile", version = "0.0.0" }
+# Intentionally *not* depend on anything salsa-related
+# base_db = { path = "../base_db", version = "0.0.0" }
+
+[dependencies.object]
+version = "0.26"
+default-features = false
+features = [ "std", "read_core", "elf", "macho", "pe" ]