Skip to content

Commit

Permalink
Make things build again
Browse files Browse the repository at this point in the history
  • Loading branch information
petrochenkov committed Jun 2, 2020
1 parent 47197d6 commit 11d9514
Show file tree
Hide file tree
Showing 33 changed files with 106 additions and 106 deletions.
124 changes: 62 additions & 62 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/librustc_arena/Cargo.toml
@@ -1,11 +1,11 @@
[package]
authors = ["The Rust Project Developers"]
name = "arena"
name = "rustc_arena"
version = "0.0.0"
edition = "2018"

[lib]
name = "arena"
name = "rustc_arena"
path = "lib.rs"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_ast/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ path = "lib.rs"
doctest = false

[dependencies]
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
log = "0.4"
scoped-tls = "1.0"
rustc_span = { path = "../librustc_span" }
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_ast_lowering/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ path = "lib.rs"
doctest = false

[dependencies]
arena = { path = "../libarena" }
arena = { path = "../librustc_arena", package = "rustc_arena" }
log = { version = "0.4", features = ["release_max_level_info", "std"] }
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
rustc_hir = { path = "../librustc_hir" }
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_attr/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ doctest = false

[dependencies]
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_errors = { path = "../librustc_errors" }
rustc_span = { path = "../librustc_span" }
rustc_data_structures = { path = "../librustc_data_structures" }
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_builtin_macros/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ path = "lib.rs"
doctest = false

[dependencies]
fmt_macros = { path = "../libfmt_macros" }
fmt_macros = { path = "../librustc_parse_format", package = "rustc_parse_format" }
log = "0.4"
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
rustc_attr = { path = "../librustc_attr" }
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_codegen_llvm/Cargo.toml
Expand Up @@ -29,7 +29,7 @@ rustc_incremental = { path = "../librustc_incremental" }
rustc_index = { path = "../librustc_index" }
rustc_llvm = { path = "../librustc_llvm" }
rustc_session = { path = "../librustc_session" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_target = { path = "../librustc_target" }
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
rustc_ast = { path = "../librustc_ast" }
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_codegen_ssa/Cargo.toml
Expand Up @@ -19,7 +19,7 @@ libc = "0.2.50"
jobserver = "0.1.11"
tempfile = "3.1"

rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_ast = { path = "../librustc_ast" }
rustc_span = { path = "../librustc_span" }
rustc_middle = { path = "../librustc_middle" }
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_data_structures/Cargo.toml
Expand Up @@ -16,8 +16,8 @@ log = "0.4"
jobserver_crate = { version = "0.1.13", package = "jobserver" }
lazy_static = "1"
once_cell = { version = "1", features = ["parking_lot"] }
rustc_serialize = { path = "../libserialize", package = "serialize" }
graphviz = { path = "../libgraphviz" }
rustc_serialize = { path = "../librustc_serialize" }
graphviz = { path = "../librustc_graphviz", package = "rustc_graphviz" }
cfg-if = "0.1.2"
crossbeam-utils = { version = "0.7", features = ["nightly"] }
stable_deref_trait = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_driver/Cargo.toml
Expand Up @@ -32,7 +32,7 @@ rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
rustc_session = { path = "../librustc_session" }
rustc_error_codes = { path = "../librustc_error_codes" }
rustc_interface = { path = "../librustc_interface" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_ast = { path = "../librustc_ast" }
rustc_span = { path = "../librustc_span" }

Expand Down
2 changes: 1 addition & 1 deletion src/librustc_errors/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ doctest = false

[dependencies]
log = "0.4"
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_span = { path = "../librustc_span" }
rustc_data_structures = { path = "../librustc_data_structures" }
unicode-width = "0.1.4"
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_expand/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ path = "lib.rs"
doctest = false

[dependencies]
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
log = "0.4"
rustc_span = { path = "../librustc_span" }
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_graphviz/Cargo.toml
@@ -1,9 +1,9 @@
[package]
authors = ["The Rust Project Developers"]
name = "graphviz"
name = "rustc_graphviz"
version = "0.0.0"
edition = "2018"

[lib]
name = "graphviz"
name = "rustc_graphviz"
path = "lib.rs"
2 changes: 1 addition & 1 deletion src/librustc_hir/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ rustc_macros = { path = "../librustc_macros" }
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_index = { path = "../librustc_index" }
rustc_span = { path = "../librustc_span" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_ast = { path = "../librustc_ast" }
lazy_static = "1"
log = { version = "0.4", features = ["release_max_level_info", "std"] }
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_incremental/Cargo.toml
Expand Up @@ -10,13 +10,13 @@ path = "lib.rs"
doctest = false

[dependencies]
graphviz = { path = "../libgraphviz" }
graphviz = { path = "../librustc_graphviz", package = "rustc_graphviz" }
log = "0.4"
rand = "0.7"
rustc_middle = { path = "../librustc_middle" }
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_hir = { path = "../librustc_hir" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_ast = { path = "../librustc_ast" }
rustc_span = { path = "../librustc_span" }
rustc_fs_util = { path = "../librustc_fs_util" }
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_index/Cargo.toml
Expand Up @@ -10,5 +10,5 @@ path = "lib.rs"
doctest = false

[dependencies]
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
4 changes: 2 additions & 2 deletions src/librustc_infer/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ path = "lib.rs"
doctest = false

[dependencies]
graphviz = { path = "../libgraphviz" }
graphviz = { path = "../librustc_graphviz", package = "rustc_graphviz" }
log = { version = "0.4", features = ["release_max_level_info", "std"] }
rustc_middle = { path = "../librustc_middle" }
rustc_data_structures = { path = "../librustc_data_structures" }
Expand All @@ -19,7 +19,7 @@ rustc_hir = { path = "../librustc_hir" }
rustc_index = { path = "../librustc_index" }
rustc_macros = { path = "../librustc_macros" }
rustc_session = { path = "../librustc_session" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_span = { path = "../librustc_span" }
rustc_target = { path = "../librustc_target" }
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_interface/Cargo.toml
Expand Up @@ -21,7 +21,7 @@ rustc_expand = { path = "../librustc_expand" }
rustc_parse = { path = "../librustc_parse" }
rustc_session = { path = "../librustc_session" }
rustc_span = { path = "../librustc_span" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_middle = { path = "../librustc_middle" }
rustc_ast_lowering = { path = "../librustc_ast_lowering" }
rustc_ast_passes = { path = "../librustc_ast_passes" }
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_metadata/Cargo.toml
Expand Up @@ -23,7 +23,7 @@ rustc_hir = { path = "../librustc_hir" }
rustc_hir_pretty = { path = "../librustc_hir_pretty" }
rustc_target = { path = "../librustc_target" }
rustc_index = { path = "../librustc_index" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
stable_deref_trait = "1.0.0"
rustc_ast = { path = "../librustc_ast" }
rustc_expand = { path = "../librustc_expand" }
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_middle/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ path = "lib.rs"
doctest = false

[dependencies]
arena = { path = "../libarena" }
arena = { path = "../librustc_arena", package = "rustc_arena" }
bitflags = "1.2.1"
scoped-tls = "1.0"
log = { version = "0.4", features = ["release_max_level_info", "std"] }
Expand All @@ -26,7 +26,7 @@ rustc_data_structures = { path = "../librustc_data_structures" }
rustc_query_system = { path = "../librustc_query_system" }
rustc_errors = { path = "../librustc_errors" }
rustc_index = { path = "../librustc_index" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_ast = { path = "../librustc_ast" }
rustc_span = { path = "../librustc_span" }
byteorder = { version = "1.3" }
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_mir/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ doctest = false

[dependencies]
either = "1.5.0"
dot = { path = "../libgraphviz", package = "graphviz" }
dot = { path = "../librustc_graphviz", package = "rustc_graphviz" }
itertools = "0.8"
log = "0.4"
log_settings = "0.1.1"
Expand All @@ -25,7 +25,7 @@ rustc_index = { path = "../librustc_index" }
rustc_infer = { path = "../librustc_infer" }
rustc_lexer = { path = "../librustc_lexer" }
rustc_macros = { path = "../librustc_macros" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_session = { path = "../librustc_session" }
rustc_target = { path = "../librustc_target" }
rustc_trait_selection = { path = "../librustc_trait_selection" }
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_mir/borrow_check/region_infer/graphviz.rs
@@ -1,5 +1,5 @@
//! This module provides linkage between RegionInferenceContext and
//! libgraphviz traits, specialized to attaching borrowck analysis
//! librustc_graphviz traits, specialized to attaching borrowck analysis
//! data to rendered labels.

use std::borrow::Cow;
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_mir/util/graphviz.rs
Expand Up @@ -76,7 +76,7 @@ where
/// Write a graphviz HTML-styled label for the given basic block, with
/// all necessary escaping already performed. (This is suitable for
/// emitting directly, as is done in this module, or for use with the
/// LabelText::HtmlStr from libgraphviz.)
/// LabelText::HtmlStr from librustc_graphviz.)
///
/// `init` and `fini` are callbacks for emitting additional rows of
/// data (using HTML enclosed with `<tr>` in the emitted text).
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_mir_build/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ path = "lib.rs"
doctest = false

[dependencies]
arena = { path = "../libarena" }
arena = { path = "../librustc_arena", package = "rustc_arena" }
log = "0.4"
rustc_middle = { path = "../librustc_middle" }
rustc_apfloat = { path = "../librustc_apfloat" }
Expand All @@ -20,7 +20,7 @@ rustc_index = { path = "../librustc_index" }
rustc_errors = { path = "../librustc_errors" }
rustc_hir = { path = "../librustc_hir" }
rustc_infer = { path = "../librustc_infer" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_session = { path = "../librustc_session" }
rustc_span = { path = "../librustc_span" }
rustc_target = { path = "../librustc_target" }
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_parse_format/Cargo.toml
@@ -1,11 +1,11 @@
[package]
authors = ["The Rust Project Developers"]
name = "fmt_macros"
name = "rustc_parse_format"
version = "0.0.0"
edition = "2018"

[lib]
name = "fmt_macros"
name = "rustc_parse_format"
path = "lib.rs"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_query_system/Cargo.toml
Expand Up @@ -10,13 +10,13 @@ path = "lib.rs"
doctest = false

[dependencies]
arena = { path = "../libarena" }
arena = { path = "../librustc_arena", package = "rustc_arena" }
log = { version = "0.4", features = ["release_max_level_info", "std"] }
rustc-rayon-core = "0.3.0"
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_errors = { path = "../librustc_errors" }
rustc_index = { path = "../librustc_index" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_span = { path = "../librustc_span" }
parking_lot = "0.10"
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
2 changes: 1 addition & 1 deletion src/librustc_resolve/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ doctest = false
bitflags = "1.2.1"
log = "0.4"
rustc_ast = { path = "../librustc_ast" }
arena = { path = "../libarena" }
arena = { path = "../librustc_arena", package = "rustc_arena" }
rustc_middle = { path = "../librustc_middle" }
rustc_ast_lowering = { path = "../librustc_ast_lowering" }
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_serialize/Cargo.toml
@@ -1,11 +1,11 @@
[package]
authors = ["The Rust Project Developers"]
name = "serialize"
name = "rustc_serialize"
version = "0.0.0"
edition = "2018"

[lib]
name = "serialize"
name = "rustc_serialize"
path = "lib.rs"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_session/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ log = "0.4"
rustc_errors = { path = "../librustc_errors" }
rustc_feature = { path = "../librustc_feature" }
rustc_target = { path = "../librustc_target" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_span = { path = "../librustc_span" }
rustc_fs_util = { path = "../librustc_fs_util" }
Expand Down
4 changes: 2 additions & 2 deletions src/librustc_span/Cargo.toml
Expand Up @@ -10,11 +10,11 @@ path = "lib.rs"
doctest = false

[dependencies]
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_macros = { path = "../librustc_macros" }
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_index = { path = "../librustc_index" }
arena = { path = "../libarena" }
arena = { path = "../librustc_arena", package = "rustc_arena" }
scoped-tls = "1.0"
unicode-width = "0.1.4"
cfg-if = "0.1.2"
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_target/Cargo.toml
Expand Up @@ -13,6 +13,6 @@ bitflags = "1.2.1"
log = "0.4"
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_macros = { path = "../librustc_macros" }
rustc_serialize = { path = "../libserialize", package = "serialize" }
rustc_serialize = { path = "../librustc_serialize" }
rustc_span = { path = "../librustc_span" }
rustc_index = { path = "../librustc_index" }
2 changes: 1 addition & 1 deletion src/librustc_trait_selection/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ path = "lib.rs"
doctest = false

[dependencies]
fmt_macros = { path = "../libfmt_macros" }
fmt_macros = { path = "../librustc_parse_format", package = "rustc_parse_format" }
log = { version = "0.4", features = ["release_max_level_info", "std"] }
rustc_attr = { path = "../librustc_attr" }
rustc_middle = { path = "../librustc_middle" }
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_typeck/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ test = false
doctest = false

[dependencies]
arena = { path = "../libarena" }
arena = { path = "../librustc_arena", package = "rustc_arena" }
log = "0.4"
rustc_middle = { path = "../librustc_middle" }
rustc_attr = { path = "../librustc_attr" }
Expand Down

0 comments on commit 11d9514

Please sign in to comment.