]> git.lizzy.rs Git - rust.git/blobdiff - crates/proc_macro_api/Cargo.toml
Diagnose unresolved derive macros
[rust.git] / crates / proc_macro_api / Cargo.toml
index 09961c7ac5b98d7f962e94bc31eacbcc7cc77a31..000c23dab6137a12af01633a12c040bde2076a27 100644 (file)
@@ -3,22 +3,29 @@ name = "proc_macro_api"
 version = "0.0.0"
 description = "TBD"
 license = "MIT OR Apache-2.0"
-edition = "2018"
+edition = "2021"
+rust-version = "1.57"
 
 [lib]
 doctest = false
 
 [dependencies]
-serde = { version = "1.0", features = ["derive"] }
-serde_json = { version = "1.0", features = ["unbounded_depth"] }
-log = "0.4.8"
-crossbeam-channel = "0.5.0"
-jod-thread = "0.1.1"
-memmap2 = "0.3.0"
-object = { version = "0.25.3", default-features = false, features = ["std", "read_core", "elf", "macho", "pe"] }
-snap = "1.0"
+object = { version = "0.28.3", default-features = false, features = [
+    "std",
+    "read_core",
+    "elf",
+    "macho",
+    "pe",
+] }
+serde = { version = "1.0.136", features = ["derive"] }
+serde_json = { version = "1.0.79", features = ["unbounded_depth"] }
+tracing = "0.1.32"
+memmap2 = "0.5.3"
+snap = "1.0.5"
 
+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" }