1
Fork 0

Ship rustc_smir with rustc

This commit is contained in:
Oli Scherer 2022-06-02 10:08:38 +00:00
parent bec75389a3
commit 9960cc1f08
2 changed files with 14 additions and 0 deletions

View file

@ -9,6 +9,9 @@ rustc_driver = { path = "../rustc_driver" }
# Make sure rustc_codegen_ssa ends up in the sysroot, because this
# crate is intended to be used by codegen backends, which may not be in-tree.
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
# Make sure rustc_smir ends up in the sysroot, because this
# crate is intended to be used by stable MIR consumers, which are not in-tree
rustc_smir = { path = "../rustc_smir" }
[dependencies.jemalloc-sys]
version = "0.5.0"