diff options
| author | bors <bors@rust-lang.org> | 2016-06-27 16:42:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-27 16:42:03 -0700 |
| commit | ea0dc9297283daff6486807f43e190b4eb561412 (patch) | |
| tree | d184776089de9911ae9e983cc692021498e21a25 /src/rustc/Cargo.lock | |
| parent | a0f572e98bacc719aa211b1fe97c61339cf6c93a (diff) | |
| parent | 360dcae4197d0bf0f59d5364470e00b589d5c549 (diff) | |
| download | rust-ea0dc9297283daff6486807f43e190b4eb561412.tar.gz rust-ea0dc9297283daff6486807f43e190b4eb561412.zip | |
Auto merge of #34424 - jseyfried:breaking_batch, r=Manishearth
Batch up libsyntax breaking changes Batch of the following syntax-[breaking-change] changes: - #34213: Add a variant `Macro` to `TraitItemKind` - #34368: Merge the variant `QPath` of `PatKind` into the variant `PatKind::Path` - #34385: Move `syntax::ast::TokenTree` into a new module `syntax::tokenstream` - #33943: - Remove the type parameter from `visit::Visitor` - Remove `attr::WithAttrs` -- use `attr::HasAttrs` instead. - Change `fold_tt`/`fold_tts` to take token trees by value and avoid wrapping token trees in `Rc`. - Remove the field `ctxt` of `ast::Mac_` - Remove inherent method `attrs()` of types -- use the method `attrs` of `HasAttrs` instead. - #34316: - Remove `ast::Decl`/`ast::DeclKind` and add variants `Local` and `Item` to `StmtKind`. - Move the node id for statements from the `StmtKind` variants to a field of `Stmt` (making `Stmt` a struct instead of an alias for `Spanned<StmtKind>`) - Rename `ast::ExprKind::Again` to `Continue`. - #34339: Generalize and abstract `ThinAttributes` to `ThinVec<Attribute>` - Use `.into()` in convert between `Vec<Attribute>` and `ThinVec<Attribute>` - Use autoderef instead of `.as_attr_slice()` - #34436: Remove the optional expression from `ast::Block` and instead use a `StmtKind::Expr` at the end of the statement list. - #34403: Move errors into a separate crate (unlikely to cause breakage)
Diffstat (limited to 'src/rustc/Cargo.lock')
| -rw-r--r-- | src/rustc/Cargo.lock | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/rustc/Cargo.lock b/src/rustc/Cargo.lock index 3e8277e28ba..9c6ed991df8 100644 --- a/src/rustc/Cargo.lock +++ b/src/rustc/Cargo.lock @@ -62,9 +62,11 @@ dependencies = [ "rustc_bitflags 0.0.0", "rustc_const_math 0.0.0", "rustc_data_structures 0.0.0", + "rustc_errors 0.0.0", "rustc_llvm 0.0.0", "serialize 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -88,8 +90,10 @@ dependencies = [ "log 0.0.0", "rustc 0.0.0", "rustc_data_structures 0.0.0", + "rustc_errors 0.0.0", "rustc_mir 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -103,6 +107,7 @@ dependencies = [ "rustc_const_math 0.0.0", "serialize 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -134,6 +139,7 @@ dependencies = [ "rustc_back 0.0.0", "rustc_borrowck 0.0.0", "rustc_const_eval 0.0.0", + "rustc_errors 0.0.0", "rustc_incremental 0.0.0", "rustc_lint 0.0.0", "rustc_llvm 0.0.0", @@ -149,6 +155,16 @@ dependencies = [ "serialize 0.0.0", "syntax 0.0.0", "syntax_ext 0.0.0", + "syntax_pos 0.0.0", +] + +[[package]] +name = "rustc_errors" +version = "0.0.0" +dependencies = [ + "log 0.0.0", + "serialize 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -162,6 +178,7 @@ dependencies = [ "rustc_data_structures 0.0.0", "serialize 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -173,6 +190,7 @@ dependencies = [ "rustc_back 0.0.0", "rustc_const_eval 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -195,9 +213,11 @@ dependencies = [ "rustc_back 0.0.0", "rustc_bitflags 0.0.0", "rustc_const_math 0.0.0", + "rustc_errors 0.0.0", "rustc_llvm 0.0.0", "serialize 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -213,6 +233,7 @@ dependencies = [ "rustc_const_math 0.0.0", "rustc_data_structures 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -223,7 +244,9 @@ dependencies = [ "rustc 0.0.0", "rustc_const_eval 0.0.0", "rustc_const_math 0.0.0", + "rustc_errors 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -238,8 +261,10 @@ dependencies = [ "rustc 0.0.0", "rustc_back 0.0.0", "rustc_bitflags 0.0.0", + "rustc_errors 0.0.0", "rustc_metadata 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -248,6 +273,7 @@ version = "0.0.0" dependencies = [ "rustc 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -257,7 +283,9 @@ dependencies = [ "arena 0.0.0", "log 0.0.0", "rustc 0.0.0", + "rustc_errors 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -268,6 +296,7 @@ dependencies = [ "rustc 0.0.0", "serialize 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -283,11 +312,13 @@ dependencies = [ "rustc_const_eval 0.0.0", "rustc_const_math 0.0.0", "rustc_data_structures 0.0.0", + "rustc_errors 0.0.0", "rustc_incremental 0.0.0", "rustc_llvm 0.0.0", "rustc_platform_intrinsics 0.0.0", "serialize 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -301,8 +332,10 @@ dependencies = [ "rustc_back 0.0.0", "rustc_const_eval 0.0.0", "rustc_const_math 0.0.0", + "rustc_errors 0.0.0", "rustc_platform_intrinsics 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -317,12 +350,14 @@ dependencies = [ "rustc_back 0.0.0", "rustc_const_eval 0.0.0", "rustc_driver 0.0.0", + "rustc_errors 0.0.0", "rustc_lint 0.0.0", "rustc_metadata 0.0.0", "rustc_resolve 0.0.0", "rustc_trans 0.0.0", "serialize 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -338,7 +373,9 @@ version = "0.0.0" dependencies = [ "log 0.0.0", "rustc_bitflags 0.0.0", + "rustc_errors 0.0.0", "serialize 0.0.0", + "syntax_pos 0.0.0", ] [[package]] @@ -347,6 +384,15 @@ version = "0.0.0" dependencies = [ "fmt_macros 0.0.0", "log 0.0.0", + "rustc_errors 0.0.0", "syntax 0.0.0", + "syntax_pos 0.0.0", +] + +[[package]] +name = "syntax_pos" +version = "0.0.0" +dependencies = [ + "serialize 0.0.0", ] |
