]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/Cargo.toml
Fix conversion from Miri Value to ConstValue
[rust.git] / src / librustc_trans / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_trans"
4 version = "0.0.0"
5
6 [lib]
7 name = "rustc_trans"
8 path = "lib.rs"
9 crate-type = ["dylib"]
10 test = false
11
12 [dependencies]
13 cc = "1.0.1"
14 flate2 = "1.0"
15 jobserver = "0.1.5"
16 libc = "0.2"
17 log = "0.4"
18 num_cpus = "1.0"
19 rustc = { path = "../librustc" }
20 rustc-demangle = "0.1.4"
21 rustc_allocator = { path = "../librustc_allocator" }
22 rustc_apfloat = { path = "../librustc_apfloat" }
23 rustc_target = { path = "../librustc_target" }
24 rustc_data_structures = { path = "../librustc_data_structures" }
25 rustc_errors = { path = "../librustc_errors" }
26 rustc_incremental = { path = "../librustc_incremental" }
27 rustc_llvm = { path = "../librustc_llvm" }
28 rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }
29 rustc_trans_utils = { path = "../librustc_trans_utils" }
30 rustc_mir = { path = "../librustc_mir" }
31 serialize = { path = "../libserialize" }
32 syntax = { path = "../libsyntax" }
33 syntax_pos = { path = "../libsyntax_pos" }
34 tempdir = "0.3"
35
36 # not actually used but needed to make sure we enable the same feature set as
37 # winapi used in librustc
38 env_logger = { version = "0.5", default-features = false }
39
40 [features]
41 # Used to communicate the feature to `rustc_target` in the same manner that the
42 # `rustc` driver script communicate this.
43 jemalloc = ["rustc_target/jemalloc"]
44
45 # This is used to convince Cargo to separately cache builds of `rustc_trans`
46 # when this option is enabled or not. That way we can build two, cache two
47 # artifacts, and have nice speedy rebuilds.
48 emscripten = ["rustc_llvm/emscripten"]