]> 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 1ba1e4abd5871ec4c08e06391341ec6f9140fbb0..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]
@@ -15,11 +14,17 @@ serde_json = { version = "1.0", features = ["unbounded_depth"] }
 log = "0.4.8"
 crossbeam-channel = "0.5.0"
 jod-thread = "0.1.1"
-memmap = "0.7.0"
-object = { version = "0.23.0", default-features = false, features = ["std", "read_core", "elf", "macho", "pe", "unaligned"] }
+memmap2 = "0.3.0"
 snap = "1.0"
 
+paths = { path = "../paths", version = "0.0.0" }
 tt = { path = "../tt", version = "0.0.0" }
-base_db = { path = "../base_db", 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" ]