b135c739fb
Polonius: update `polonius-engine` to 0.12.0 Since @albins won't have the time to finish up #68993 for a while, I'll take care of the trivial remaining tasks (rebasing, taking care of tidy/rustfmt). I'll r? @nikomatsakis since they're assigned to #68993, but have actually [already reviewed it pre-rebase](https://github.com/rust-lang/rust/pull/68993#issuecomment-586413089). When CI passes: I'll notify bors and close #68993, since this PR supersedes it.
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "rustc"
|
|
path = "lib.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
arena = { path = "../libarena" }
|
|
bitflags = "1.2.1"
|
|
jobserver = "0.1"
|
|
scoped-tls = "1.0"
|
|
log = { version = "0.4", features = ["release_max_level_info", "std"] }
|
|
rustc-rayon = "0.3.0"
|
|
rustc-rayon-core = "0.3.0"
|
|
polonius-engine = "0.12.0"
|
|
rustc_apfloat = { path = "../librustc_apfloat" }
|
|
rustc_attr = { path = "../librustc_attr" }
|
|
rustc_feature = { path = "../librustc_feature" }
|
|
rustc_hir = { path = "../librustc_hir" }
|
|
rustc_target = { path = "../librustc_target" }
|
|
rustc_macros = { path = "../librustc_macros" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_errors = { path = "../librustc_errors" }
|
|
rustc_index = { path = "../librustc_index" }
|
|
rustc_serialize = { path = "../libserialize", package = "serialize" }
|
|
rustc_ast = { path = "../librustc_ast" }
|
|
rustc_span = { path = "../librustc_span" }
|
|
backtrace = "0.3.40"
|
|
parking_lot = "0.9"
|
|
byteorder = { version = "1.3" }
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|
|
measureme = "0.7.1"
|
|
rustc_session = { path = "../librustc_session" }
|