From 54c787ea4dc0f22af13e3a9eeb8902bad498bb5f Mon Sep 17 00:00:00 2001 From: Charles Lew Date: Mon, 31 Aug 2020 09:38:29 +0800 Subject: [PATCH] Add license fields to all crates. --- compiler/rustc/Cargo.toml | 1 + compiler/rustc_apfloat/Cargo.toml | 1 + compiler/rustc_arena/Cargo.toml | 1 + compiler/rustc_ast/Cargo.toml | 1 + compiler/rustc_ast_lowering/Cargo.toml | 1 + compiler/rustc_ast_passes/Cargo.toml | 1 + compiler/rustc_ast_pretty/Cargo.toml | 1 + compiler/rustc_attr/Cargo.toml | 1 + compiler/rustc_builtin_macros/Cargo.toml | 1 + compiler/rustc_codegen_llvm/Cargo.toml | 1 + compiler/rustc_codegen_ssa/Cargo.toml | 1 + compiler/rustc_data_structures/Cargo.toml | 1 + compiler/rustc_driver/Cargo.toml | 1 + compiler/rustc_error_codes/Cargo.toml | 1 + compiler/rustc_errors/Cargo.toml | 1 + compiler/rustc_expand/Cargo.toml | 1 + compiler/rustc_feature/Cargo.toml | 1 + compiler/rustc_fs_util/Cargo.toml | 1 + compiler/rustc_graphviz/Cargo.toml | 1 + compiler/rustc_hir/Cargo.toml | 1 + compiler/rustc_hir_pretty/Cargo.toml | 1 + compiler/rustc_incremental/Cargo.toml | 1 + compiler/rustc_index/Cargo.toml | 1 + compiler/rustc_infer/Cargo.toml | 1 + compiler/rustc_interface/Cargo.toml | 1 + compiler/rustc_lint/Cargo.toml | 1 + compiler/rustc_macros/Cargo.toml | 1 + compiler/rustc_metadata/Cargo.toml | 1 + compiler/rustc_middle/Cargo.toml | 1 + compiler/rustc_mir/Cargo.toml | 1 + compiler/rustc_mir_build/Cargo.toml | 1 + compiler/rustc_parse/Cargo.toml | 1 + compiler/rustc_parse_format/Cargo.toml | 1 + compiler/rustc_passes/Cargo.toml | 1 + compiler/rustc_plugin_impl/Cargo.toml | 1 + compiler/rustc_privacy/Cargo.toml | 1 + compiler/rustc_query_system/Cargo.toml | 1 + compiler/rustc_resolve/Cargo.toml | 1 + compiler/rustc_save_analysis/Cargo.toml | 1 + compiler/rustc_serialize/Cargo.toml | 1 + compiler/rustc_session/Cargo.toml | 1 + compiler/rustc_span/Cargo.toml | 1 + compiler/rustc_symbol_mangling/Cargo.toml | 1 + compiler/rustc_target/Cargo.toml | 1 + compiler/rustc_trait_selection/Cargo.toml | 1 + compiler/rustc_traits/Cargo.toml | 1 + compiler/rustc_ty/Cargo.toml | 1 + compiler/rustc_typeck/Cargo.toml | 1 + library/alloc/Cargo.toml | 1 + library/core/Cargo.toml | 1 + library/panic_abort/Cargo.toml | 1 + library/panic_unwind/Cargo.toml | 1 + library/proc_macro/Cargo.toml | 1 + library/profiler_builtins/Cargo.toml | 1 + library/term/Cargo.toml | 1 + library/test/Cargo.toml | 1 + library/unwind/Cargo.toml | 1 + src/bootstrap/Cargo.toml | 1 + src/build_helper/Cargo.toml | 1 + src/librustc_llvm/Cargo.toml | 1 + src/librustdoc/Cargo.toml | 1 + src/tools/build-manifest/Cargo.toml | 1 + src/tools/cargotest/Cargo.toml | 1 + src/tools/compiletest/Cargo.toml | 1 + src/tools/error_index_generator/Cargo.toml | 1 + src/tools/expand-yaml-anchors/Cargo.toml | 1 + src/tools/linkchecker/Cargo.toml | 1 + src/tools/remote-test-client/Cargo.toml | 1 + src/tools/remote-test-server/Cargo.toml | 1 + src/tools/rust-demangler/Cargo.toml | 1 + src/tools/rustdoc-themes/Cargo.toml | 1 + src/tools/rustdoc/Cargo.toml | 1 + src/tools/tidy/Cargo.toml | 1 + src/tools/unicode-table-generator/Cargo.toml | 1 + 74 files changed, 74 insertions(+) diff --git a/compiler/rustc/Cargo.toml b/compiler/rustc/Cargo.toml index 4340d50f845b8..1747f9aae1a17 100644 --- a/compiler/rustc/Cargo.toml +++ b/compiler/rustc/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc-main" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = '2018' [[bin]] diff --git a/compiler/rustc_apfloat/Cargo.toml b/compiler/rustc_apfloat/Cargo.toml index 306513f1a7eaf..4b8c11a58804d 100644 --- a/compiler/rustc_apfloat/Cargo.toml +++ b/compiler/rustc_apfloat/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_apfloat" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_arena/Cargo.toml b/compiler/rustc_arena/Cargo.toml index 41701f3255f48..2d2641079490d 100644 --- a/compiler/rustc_arena/Cargo.toml +++ b/compiler/rustc_arena/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_arena" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_ast/Cargo.toml b/compiler/rustc_ast/Cargo.toml index 13e17a807c484..ffab702dc0065 100644 --- a/compiler/rustc_ast/Cargo.toml +++ b/compiler/rustc_ast/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_ast" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_ast_lowering/Cargo.toml b/compiler/rustc_ast_lowering/Cargo.toml index 177a9066edf5d..fe5e47c40225a 100644 --- a/compiler/rustc_ast_lowering/Cargo.toml +++ b/compiler/rustc_ast_lowering/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_ast_lowering" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_ast_passes/Cargo.toml b/compiler/rustc_ast_passes/Cargo.toml index 7cf3e752c9256..2234f389f5157 100644 --- a/compiler/rustc_ast_passes/Cargo.toml +++ b/compiler/rustc_ast_passes/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_ast_passes" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_ast_pretty/Cargo.toml b/compiler/rustc_ast_pretty/Cargo.toml index f447bc7f4efba..23d714615028c 100644 --- a/compiler/rustc_ast_pretty/Cargo.toml +++ b/compiler/rustc_ast_pretty/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_ast_pretty" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_attr/Cargo.toml b/compiler/rustc_attr/Cargo.toml index 5f941a0a650f8..b9cda7bd968f6 100644 --- a/compiler/rustc_attr/Cargo.toml +++ b/compiler/rustc_attr/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_attr" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_builtin_macros/Cargo.toml b/compiler/rustc_builtin_macros/Cargo.toml index c397a85412627..3c48b946d45bc 100644 --- a/compiler/rustc_builtin_macros/Cargo.toml +++ b/compiler/rustc_builtin_macros/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_builtin_macros" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_codegen_llvm/Cargo.toml b/compiler/rustc_codegen_llvm/Cargo.toml index 38f552558c839..73910d0f37a3d 100644 --- a/compiler/rustc_codegen_llvm/Cargo.toml +++ b/compiler/rustc_codegen_llvm/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_codegen_llvm" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_codegen_ssa/Cargo.toml b/compiler/rustc_codegen_ssa/Cargo.toml index e5df0f60941a8..7f99ee835edb1 100644 --- a/compiler/rustc_codegen_ssa/Cargo.toml +++ b/compiler/rustc_codegen_ssa/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_codegen_ssa" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_data_structures/Cargo.toml b/compiler/rustc_data_structures/Cargo.toml index f929d9911f91a..f0166f6a77a0a 100644 --- a/compiler/rustc_data_structures/Cargo.toml +++ b/compiler/rustc_data_structures/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_data_structures" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_driver/Cargo.toml b/compiler/rustc_driver/Cargo.toml index 76e8592254cd3..88606709756dd 100644 --- a/compiler/rustc_driver/Cargo.toml +++ b/compiler/rustc_driver/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_driver" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_error_codes/Cargo.toml b/compiler/rustc_error_codes/Cargo.toml index b4c9cd9456523..b0f527386fd7f 100644 --- a/compiler/rustc_error_codes/Cargo.toml +++ b/compiler/rustc_error_codes/Cargo.toml @@ -2,4 +2,5 @@ authors = ["The Rust Project Developers"] name = "rustc_error_codes" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" diff --git a/compiler/rustc_errors/Cargo.toml b/compiler/rustc_errors/Cargo.toml index e4dbb8db38104..0a79dee82a90a 100644 --- a/compiler/rustc_errors/Cargo.toml +++ b/compiler/rustc_errors/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_errors" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_expand/Cargo.toml b/compiler/rustc_expand/Cargo.toml index 25c2851f6de59..e3d3b044b43f3 100644 --- a/compiler/rustc_expand/Cargo.toml +++ b/compiler/rustc_expand/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_expand" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" build = false diff --git a/compiler/rustc_feature/Cargo.toml b/compiler/rustc_feature/Cargo.toml index 3f8047e931e9b..38814b9330a30 100644 --- a/compiler/rustc_feature/Cargo.toml +++ b/compiler/rustc_feature/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_feature" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_fs_util/Cargo.toml b/compiler/rustc_fs_util/Cargo.toml index e4414c788a70b..46b874aba2d80 100644 --- a/compiler/rustc_fs_util/Cargo.toml +++ b/compiler/rustc_fs_util/Cargo.toml @@ -2,4 +2,5 @@ authors = ["The Rust Project Developers"] name = "rustc_fs_util" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" diff --git a/compiler/rustc_graphviz/Cargo.toml b/compiler/rustc_graphviz/Cargo.toml index d07b75a5c8f1c..b67565009e321 100644 --- a/compiler/rustc_graphviz/Cargo.toml +++ b/compiler/rustc_graphviz/Cargo.toml @@ -2,4 +2,5 @@ authors = ["The Rust Project Developers"] name = "rustc_graphviz" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" diff --git a/compiler/rustc_hir/Cargo.toml b/compiler/rustc_hir/Cargo.toml index ed295ff005839..1e5c825efe87e 100644 --- a/compiler/rustc_hir/Cargo.toml +++ b/compiler/rustc_hir/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_hir" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_hir_pretty/Cargo.toml b/compiler/rustc_hir_pretty/Cargo.toml index 1f7643e9fb496..4275c1f15cb57 100644 --- a/compiler/rustc_hir_pretty/Cargo.toml +++ b/compiler/rustc_hir_pretty/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_hir_pretty" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_incremental/Cargo.toml b/compiler/rustc_incremental/Cargo.toml index 049e5b8b72284..c913ccc7e2ca7 100644 --- a/compiler/rustc_incremental/Cargo.toml +++ b/compiler/rustc_incremental/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_incremental" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_index/Cargo.toml b/compiler/rustc_index/Cargo.toml index 6ac7c06ee838c..386193520a32c 100644 --- a/compiler/rustc_index/Cargo.toml +++ b/compiler/rustc_index/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_index" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_infer/Cargo.toml b/compiler/rustc_infer/Cargo.toml index 5dba4106c9423..a420f799dd9e1 100644 --- a/compiler/rustc_infer/Cargo.toml +++ b/compiler/rustc_infer/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_infer" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_interface/Cargo.toml b/compiler/rustc_interface/Cargo.toml index 9affe4ec6d8a1..6c26e9c3be0dd 100644 --- a/compiler/rustc_interface/Cargo.toml +++ b/compiler/rustc_interface/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_interface" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_lint/Cargo.toml b/compiler/rustc_lint/Cargo.toml index 760a8e385d680..9dbfb8bb4c492 100644 --- a/compiler/rustc_lint/Cargo.toml +++ b/compiler/rustc_lint/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_lint" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_macros/Cargo.toml b/compiler/rustc_macros/Cargo.toml index 73eb0dd56d772..19f6344fc1ecd 100644 --- a/compiler/rustc_macros/Cargo.toml +++ b/compiler/rustc_macros/Cargo.toml @@ -2,6 +2,7 @@ name = "rustc_macros" version = "0.1.0" authors = ["The Rust Project Developers"] +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_metadata/Cargo.toml b/compiler/rustc_metadata/Cargo.toml index 4b144f94ea70b..0d11be0c594dd 100644 --- a/compiler/rustc_metadata/Cargo.toml +++ b/compiler/rustc_metadata/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_metadata" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_middle/Cargo.toml b/compiler/rustc_middle/Cargo.toml index 5a82cbf2997df..bf553f7251b11 100644 --- a/compiler/rustc_middle/Cargo.toml +++ b/compiler/rustc_middle/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_middle" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_mir/Cargo.toml b/compiler/rustc_mir/Cargo.toml index 6b0412ece7a1b..b498cd50afce3 100644 --- a/compiler/rustc_mir/Cargo.toml +++ b/compiler/rustc_mir/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_mir" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_mir_build/Cargo.toml b/compiler/rustc_mir_build/Cargo.toml index 2dd894a67a6a1..e64db2d7e2137 100644 --- a/compiler/rustc_mir_build/Cargo.toml +++ b/compiler/rustc_mir_build/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_mir_build" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_parse/Cargo.toml b/compiler/rustc_parse/Cargo.toml index 52835e5c8a94d..f3a95897e79a6 100644 --- a/compiler/rustc_parse/Cargo.toml +++ b/compiler/rustc_parse/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_parse" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_parse_format/Cargo.toml b/compiler/rustc_parse_format/Cargo.toml index c2317d91a6e95..e38291b92124b 100644 --- a/compiler/rustc_parse_format/Cargo.toml +++ b/compiler/rustc_parse_format/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_parse_format" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_passes/Cargo.toml b/compiler/rustc_passes/Cargo.toml index 4c3a96eed04c4..6edba58f2d189 100644 --- a/compiler/rustc_passes/Cargo.toml +++ b/compiler/rustc_passes/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_passes" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_plugin_impl/Cargo.toml b/compiler/rustc_plugin_impl/Cargo.toml index 500d13a8c1647..c872922d41829 100644 --- a/compiler/rustc_plugin_impl/Cargo.toml +++ b/compiler/rustc_plugin_impl/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_plugin_impl" version = "0.0.0" +license = "MIT OR Apache-2.0" build = false edition = "2018" diff --git a/compiler/rustc_privacy/Cargo.toml b/compiler/rustc_privacy/Cargo.toml index ce83dc1de78c7..19fd2afef5c66 100644 --- a/compiler/rustc_privacy/Cargo.toml +++ b/compiler/rustc_privacy/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_privacy" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_query_system/Cargo.toml b/compiler/rustc_query_system/Cargo.toml index 7defb00a8813e..5104d7546e4fe 100644 --- a/compiler/rustc_query_system/Cargo.toml +++ b/compiler/rustc_query_system/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_query_system" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_resolve/Cargo.toml b/compiler/rustc_resolve/Cargo.toml index 821f9ea4738fe..75ca438be273a 100644 --- a/compiler/rustc_resolve/Cargo.toml +++ b/compiler/rustc_resolve/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_resolve" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_save_analysis/Cargo.toml b/compiler/rustc_save_analysis/Cargo.toml index da1bed37a96cb..ed8a4e6d2bafa 100644 --- a/compiler/rustc_save_analysis/Cargo.toml +++ b/compiler/rustc_save_analysis/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_save_analysis" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_serialize/Cargo.toml b/compiler/rustc_serialize/Cargo.toml index 16c5dff734126..a610051250edf 100644 --- a/compiler/rustc_serialize/Cargo.toml +++ b/compiler/rustc_serialize/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_serialize" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_session/Cargo.toml b/compiler/rustc_session/Cargo.toml index cdff1662fdb0e..08fc36a769514 100644 --- a/compiler/rustc_session/Cargo.toml +++ b/compiler/rustc_session/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_session" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_span/Cargo.toml b/compiler/rustc_span/Cargo.toml index 1abfd50f00364..9dfdebc404592 100644 --- a/compiler/rustc_span/Cargo.toml +++ b/compiler/rustc_span/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_span" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_symbol_mangling/Cargo.toml b/compiler/rustc_symbol_mangling/Cargo.toml index c0dacd24c38e6..ffcce58b64f1d 100644 --- a/compiler/rustc_symbol_mangling/Cargo.toml +++ b/compiler/rustc_symbol_mangling/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_symbol_mangling" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_target/Cargo.toml b/compiler/rustc_target/Cargo.toml index 2d7d9f1d82d27..2edaab966a85f 100644 --- a/compiler/rustc_target/Cargo.toml +++ b/compiler/rustc_target/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_target" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_trait_selection/Cargo.toml b/compiler/rustc_trait_selection/Cargo.toml index a72c172918bb0..c5ba11e8502dd 100644 --- a/compiler/rustc_trait_selection/Cargo.toml +++ b/compiler/rustc_trait_selection/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_trait_selection" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/compiler/rustc_traits/Cargo.toml b/compiler/rustc_traits/Cargo.toml index 2d63fc51220e1..c1e04e0558385 100644 --- a/compiler/rustc_traits/Cargo.toml +++ b/compiler/rustc_traits/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_traits" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_ty/Cargo.toml b/compiler/rustc_ty/Cargo.toml index acb011b2dc063..669c14c0f143e 100644 --- a/compiler/rustc_ty/Cargo.toml +++ b/compiler/rustc_ty/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_ty" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/compiler/rustc_typeck/Cargo.toml b/compiler/rustc_typeck/Cargo.toml index 0a6bfaef4319a..677e5bfff75b1 100644 --- a/compiler/rustc_typeck/Cargo.toml +++ b/compiler/rustc_typeck/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_typeck" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/library/alloc/Cargo.toml b/library/alloc/Cargo.toml index 381750a5198c8..9b3c5845d8aa2 100644 --- a/library/alloc/Cargo.toml +++ b/library/alloc/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "alloc" version = "0.0.0" +license = "MIT OR Apache-2.0" autotests = false autobenches = false edition = "2018" diff --git a/library/core/Cargo.toml b/library/core/Cargo.toml index c1596012eac24..23873a90f148c 100644 --- a/library/core/Cargo.toml +++ b/library/core/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "core" version = "0.0.0" +license = "MIT OR Apache-2.0" autotests = false autobenches = false edition = "2018" diff --git a/library/panic_abort/Cargo.toml b/library/panic_abort/Cargo.toml index b15919fad75e7..db049f82aed77 100644 --- a/library/panic_abort/Cargo.toml +++ b/library/panic_abort/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "panic_abort" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/library/panic_unwind/Cargo.toml b/library/panic_unwind/Cargo.toml index d27ba9876416d..204a43528766f 100644 --- a/library/panic_unwind/Cargo.toml +++ b/library/panic_unwind/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "panic_unwind" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/library/proc_macro/Cargo.toml b/library/proc_macro/Cargo.toml index 9cc9ef4ec19be..a5936a24db6da 100644 --- a/library/proc_macro/Cargo.toml +++ b/library/proc_macro/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "proc_macro" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/library/profiler_builtins/Cargo.toml b/library/profiler_builtins/Cargo.toml index 695c847d2cde6..4bd9df334fd56 100644 --- a/library/profiler_builtins/Cargo.toml +++ b/library/profiler_builtins/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "profiler_builtins" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/library/term/Cargo.toml b/library/term/Cargo.toml index ddf85b5c5bcdb..084c607f427dc 100644 --- a/library/term/Cargo.toml +++ b/library/term/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "term" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/library/test/Cargo.toml b/library/test/Cargo.toml index 7b76dc83aa253..5e2616157f47a 100644 --- a/library/test/Cargo.toml +++ b/library/test/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "test" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/library/unwind/Cargo.toml b/library/unwind/Cargo.toml index 8e2db217c3151..0c319272a8f50 100644 --- a/library/unwind/Cargo.toml +++ b/library/unwind/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "unwind" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" include = [ '/libunwind/*', diff --git a/src/bootstrap/Cargo.toml b/src/bootstrap/Cargo.toml index c4918d7f2e714..fc665345d5e1c 100644 --- a/src/bootstrap/Cargo.toml +++ b/src/bootstrap/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "bootstrap" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/src/build_helper/Cargo.toml b/src/build_helper/Cargo.toml index 04c7820b45665..5efbc920511e0 100644 --- a/src/build_helper/Cargo.toml +++ b/src/build_helper/Cargo.toml @@ -2,6 +2,7 @@ name = "build_helper" version = "0.1.0" authors = ["The Rust Project Developers"] +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/src/librustc_llvm/Cargo.toml b/src/librustc_llvm/Cargo.toml index 9f2711eec10ac..792880953d780 100644 --- a/src/librustc_llvm/Cargo.toml +++ b/src/librustc_llvm/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustc_llvm" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/src/librustdoc/Cargo.toml b/src/librustdoc/Cargo.toml index 09afb3cae5b48..70dcb2646669f 100644 --- a/src/librustdoc/Cargo.toml +++ b/src/librustdoc/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rustdoc" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [lib] diff --git a/src/tools/build-manifest/Cargo.toml b/src/tools/build-manifest/Cargo.toml index 0bbbabd29989e..a7c2531d2d424 100644 --- a/src/tools/build-manifest/Cargo.toml +++ b/src/tools/build-manifest/Cargo.toml @@ -2,6 +2,7 @@ name = "build-manifest" version = "0.1.0" authors = ["Alex Crichton "] +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/src/tools/cargotest/Cargo.toml b/src/tools/cargotest/Cargo.toml index 3811fee39368f..f8f9529f11815 100644 --- a/src/tools/cargotest/Cargo.toml +++ b/src/tools/cargotest/Cargo.toml @@ -2,6 +2,7 @@ name = "cargotest2" version = "0.1.0" authors = ["Brian Anderson "] +license = "MIT OR Apache-2.0" edition = "2018" [[bin]] diff --git a/src/tools/compiletest/Cargo.toml b/src/tools/compiletest/Cargo.toml index c601084d11917..cdaa6287d4a99 100644 --- a/src/tools/compiletest/Cargo.toml +++ b/src/tools/compiletest/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "compiletest" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/src/tools/error_index_generator/Cargo.toml b/src/tools/error_index_generator/Cargo.toml index 787e08404e1c6..1a12ca5848840 100644 --- a/src/tools/error_index_generator/Cargo.toml +++ b/src/tools/error_index_generator/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "error_index_generator" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/src/tools/expand-yaml-anchors/Cargo.toml b/src/tools/expand-yaml-anchors/Cargo.toml index 2c63e28b693da..6db03d074784b 100644 --- a/src/tools/expand-yaml-anchors/Cargo.toml +++ b/src/tools/expand-yaml-anchors/Cargo.toml @@ -2,6 +2,7 @@ name = "expand-yaml-anchors" version = "0.1.0" authors = ["Pietro Albini "] +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/src/tools/linkchecker/Cargo.toml b/src/tools/linkchecker/Cargo.toml index 0994cd2066246..46e0ed4ea3376 100644 --- a/src/tools/linkchecker/Cargo.toml +++ b/src/tools/linkchecker/Cargo.toml @@ -2,6 +2,7 @@ name = "linkchecker" version = "0.1.0" authors = ["Alex Crichton "] +license = "MIT OR Apache-2.0" edition = "2018" [[bin]] diff --git a/src/tools/remote-test-client/Cargo.toml b/src/tools/remote-test-client/Cargo.toml index 1a4b24bd5b34c..28b985edd0e30 100644 --- a/src/tools/remote-test-client/Cargo.toml +++ b/src/tools/remote-test-client/Cargo.toml @@ -2,6 +2,7 @@ name = "remote-test-client" version = "0.1.0" authors = ["The Rust Project Developers"] +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/src/tools/remote-test-server/Cargo.toml b/src/tools/remote-test-server/Cargo.toml index 5906c76c01d9f..20c2c5418573b 100644 --- a/src/tools/remote-test-server/Cargo.toml +++ b/src/tools/remote-test-server/Cargo.toml @@ -2,6 +2,7 @@ name = "remote-test-server" version = "0.1.0" authors = ["The Rust Project Developers"] +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/src/tools/rust-demangler/Cargo.toml b/src/tools/rust-demangler/Cargo.toml index 0b8d974d2558a..525fc2aa4d50a 100644 --- a/src/tools/rust-demangler/Cargo.toml +++ b/src/tools/rust-demangler/Cargo.toml @@ -2,6 +2,7 @@ authors = ["The Rust Project Developers"] name = "rust-demangler" version = "0.0.0" +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/src/tools/rustdoc-themes/Cargo.toml b/src/tools/rustdoc-themes/Cargo.toml index c12a20fd56c7b..5a5c6b6ac6bd0 100644 --- a/src/tools/rustdoc-themes/Cargo.toml +++ b/src/tools/rustdoc-themes/Cargo.toml @@ -2,6 +2,7 @@ name = "rustdoc-themes" version = "0.1.0" authors = ["Guillaume Gomez "] +license = "MIT OR Apache-2.0" edition = "2018" [[bin]] diff --git a/src/tools/rustdoc/Cargo.toml b/src/tools/rustdoc/Cargo.toml index 36aa5916da733..bbb2340b1fc04 100644 --- a/src/tools/rustdoc/Cargo.toml +++ b/src/tools/rustdoc/Cargo.toml @@ -2,6 +2,7 @@ name = "rustdoc-tool" version = "0.0.0" authors = ["The Rust Project Developers"] +license = "MIT OR Apache-2.0" edition = "2018" # Cargo adds a number of paths to the dylib search path on windows, which results in diff --git a/src/tools/tidy/Cargo.toml b/src/tools/tidy/Cargo.toml index ccdb4524d5c5a..13f507c4504f4 100644 --- a/src/tools/tidy/Cargo.toml +++ b/src/tools/tidy/Cargo.toml @@ -2,6 +2,7 @@ name = "tidy" version = "0.1.0" authors = ["Alex Crichton "] +license = "MIT OR Apache-2.0" edition = "2018" [dependencies] diff --git a/src/tools/unicode-table-generator/Cargo.toml b/src/tools/unicode-table-generator/Cargo.toml index 92344cdfc89ee..ade3ed3efdd5f 100644 --- a/src/tools/unicode-table-generator/Cargo.toml +++ b/src/tools/unicode-table-generator/Cargo.toml @@ -2,6 +2,7 @@ name = "unicode-bdd" version = "0.1.0" authors = ["Mark Rousskov "] +license = "MIT OR Apache-2.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html