]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_driver/Cargo.toml
Properly encode spans with a dummy location and non-root `SyntaxContext`
[rust.git] / compiler / rustc_driver / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_driver"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 crate-type = ["dylib"]
9
10 [dependencies]
11 libc = "0.2"
12 tracing = { version = "0.1.18", features = ["release_max_level_info"]  }
13 tracing-subscriber = { version = "0.2.10", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
14 rustc_middle = { path = "../rustc_middle" }
15 rustc_ast_pretty = { path = "../rustc_ast_pretty" }
16 rustc_target = { path = "../rustc_target" }
17 rustc_lint = { path = "../rustc_lint" }
18 rustc_data_structures = { path = "../rustc_data_structures" }
19 rustc_errors = { path = "../rustc_errors" }
20 rustc_feature = { path = "../rustc_feature" }
21 rustc_hir = { path = "../rustc_hir" }
22 rustc_hir_pretty = { path = "../rustc_hir_pretty" }
23 rustc_metadata = { path = "../rustc_metadata" }
24 rustc_mir = { path = "../rustc_mir" }
25 rustc_parse = { path = "../rustc_parse" }
26 rustc_plugin_impl = { path = "../rustc_plugin_impl" }
27 rustc_save_analysis = { path = "../rustc_save_analysis" }
28 rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
29 rustc_session = { path = "../rustc_session" }
30 rustc_error_codes = { path = "../rustc_error_codes" }
31 rustc_interface = { path = "../rustc_interface" }
32 rustc_serialize = { path = "../rustc_serialize" }
33 rustc_ast = { path = "../rustc_ast" }
34 rustc_span = { path = "../rustc_span" }
35
36 [target.'cfg(windows)'.dependencies]
37 winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"] }
38
39 [features]
40 llvm = ['rustc_interface/llvm']