]> git.proxmox.com Git - rustc.git/blobdiff - src/librustc_metadata/Cargo.toml
New upstream version 1.41.1+dfsg1
[rustc.git] / src / librustc_metadata / Cargo.toml
index 338824d5efe4caa862256121941b11a7e38bdbce..88d1c501bae5c99c49589ac59c9ce6362ba19f1c 100644 (file)
@@ -2,21 +2,27 @@
 authors = ["The Rust Project Developers"]
 name = "rustc_metadata"
 version = "0.0.0"
+edition = "2018"
 
 [lib]
 name = "rustc_metadata"
 path = "lib.rs"
-crate-type = ["dylib"]
+doctest = false
 
 [dependencies]
 flate2 = "1.0"
 log = "0.4"
-proc_macro = { path = "../libproc_macro" }
+memmap = "0.7"
+smallvec = { version = "1.0", features = ["union", "may_dangle"] }
 rustc = { path = "../librustc" }
-rustc_target = { path = "../librustc_target" }
 rustc_data_structures = { path = "../librustc_data_structures" }
-rustc_errors = { path = "../librustc_errors" }
-serialize = { path = "../libserialize" }
+errors = { path = "../librustc_errors", package = "rustc_errors" }
+rustc_target = { path = "../librustc_target" }
+rustc_index = { path = "../librustc_index" }
+rustc_serialize = { path = "../libserialize", package = "serialize" }
+stable_deref_trait = "1.0.0"
 syntax = { path = "../libsyntax" }
-syntax_ext = { path = "../libsyntax_ext" }
+syntax_expand = { path = "../libsyntax_expand" }
+rustc_parse = { path = "../librustc_parse" }
 syntax_pos = { path = "../libsyntax_pos" }
+rustc_error_codes = { path = "../librustc_error_codes" }