52
52
TARGET_CRATES := libc std term \
53
53
getopts collections test rand \
54
54
compiler_builtins core alloc \
55
- rustc_unicode rustc_bitflags \
55
+ std_unicode rustc_bitflags \
56
56
alloc_system alloc_jemalloc \
57
57
panic_abort panic_unwind unwind
58
58
RUSTC_CRATES := rustc rustc_typeck rustc_mir rustc_borrowck rustc_resolve rustc_driver \
@@ -69,11 +69,11 @@ DEPS_compiler_builtins := core
69
69
DEPS_alloc := core libc alloc_system
70
70
DEPS_alloc_system := core libc
71
71
DEPS_alloc_jemalloc := core libc native:jemalloc
72
- DEPS_collections := core alloc rustc_unicode
72
+ DEPS_collections := core alloc std_unicode
73
73
DEPS_libc := core
74
74
DEPS_rand := core
75
75
DEPS_rustc_bitflags := core
76
- DEPS_rustc_unicode := core
76
+ DEPS_std_unicode := core
77
77
DEPS_panic_abort := libc alloc
78
78
DEPS_panic_unwind := libc alloc unwind
79
79
DEPS_unwind := libc
@@ -85,7 +85,7 @@ RUSTFLAGS1_panic_abort := -C panic=abort
85
85
RUSTFLAGS2_panic_abort := -C panic=abort
86
86
RUSTFLAGS3_panic_abort := -C panic=abort
87
87
88
- DEPS_std := core libc rand alloc collections compiler_builtins rustc_unicode \
88
+ DEPS_std := core libc rand alloc collections compiler_builtins std_unicode \
89
89
native:backtrace \
90
90
alloc_system panic_abort panic_unwind unwind
91
91
DEPS_arena := std
@@ -100,7 +100,7 @@ DEPS_serialize := std log
100
100
DEPS_term := std
101
101
DEPS_test := std getopts term native:rust_test_helpers
102
102
103
- DEPS_syntax := std term serialize log arena libc rustc_bitflags rustc_unicode rustc_errors syntax_pos rustc_data_structures
103
+ DEPS_syntax := std term serialize log arena libc rustc_bitflags std_unicode rustc_errors syntax_pos rustc_data_structures
104
104
DEPS_syntax_ext := syntax syntax_pos rustc_errors fmt_macros proc_macro
105
105
DEPS_syntax_pos := serialize
106
106
DEPS_proc_macro_tokens := syntax syntax_pos log
@@ -162,7 +162,7 @@ ONLY_RLIB_libc := 1
162
162
ONLY_RLIB_alloc := 1
163
163
ONLY_RLIB_rand := 1
164
164
ONLY_RLIB_collections := 1
165
- ONLY_RLIB_rustc_unicode := 1
165
+ ONLY_RLIB_std_unicode := 1
166
166
ONLY_RLIB_rustc_bitflags := 1
167
167
ONLY_RLIB_alloc_system := 1
168
168
ONLY_RLIB_alloc_jemalloc := 1
@@ -173,7 +173,7 @@ ONLY_RLIB_unwind := 1
173
173
TARGET_SPECIFIC_alloc_jemalloc := 1
174
174
175
175
# Documented-by-default crates
176
- DOC_CRATES := std alloc collections core libc rustc_unicode
176
+ DOC_CRATES := std alloc collections core libc std_unicode
177
177
178
178
ifeq ($(CFG_DISABLE_JEMALLOC ) ,)
179
179
RUSTFLAGS_rustc_back := --cfg 'feature="jemalloc"'
0 commit comments