remove hex dependency in bootstrap#119020
Conversation
Signed-off-by: onur-ozkan <work@onurozkan.dev>
|
(rustbot has picked a reviewer for you, use r? to override) |
albertlarsan68
left a comment
There was a problem hiding this comment.
LGTM
@bors r+ rollup
Let's see if this works :)
|
Doesn't work, I tried that too before :) |
|
@bors r+ rollup |
|
@bors r- I think this will fail due to unused import because of the unix specific test. |
fe897ed to
87b5cbc
Compare
…san68 remove `hex` dependency in bootstrap First commit removes the `hex` dependency, as we can achieve the same output with the added function, which is very small and simple. Second commit creates a test module for the helpers util and adds unit tests for multiple helper functions, including `hex_encode`.
…llaumeGomez Rollup of 5 pull requests Successful merges: - rust-lang#118644 (Add test for Apple's `-weak_framework` linker argument) - rust-lang#118828 (Remove dead codes in rustc_codegen_gcc) - rust-lang#118830 (Add support for `--env` on `tracked_env::var`) - rust-lang#119001 (rustdoc-search: remove parallel searchWords array) - rust-lang#119020 (remove `hex` dependency in bootstrap) r? `@ghost` `@rustbot` modify labels: rollup
…san68 remove `hex` dependency in bootstrap First commit removes the `hex` dependency, as we can achieve the same output with the added function, which is very small and simple. Second commit creates a test module for the helpers util and adds unit tests for multiple helper functions, including `hex_encode`.
…llaumeGomez Rollup of 5 pull requests Successful merges: - rust-lang#118828 (Remove dead codes in rustc_codegen_gcc) - rust-lang#118830 (Add support for `--env` on `tracked_env::var`) - rust-lang#119001 (rustdoc-search: remove parallel searchWords array) - rust-lang#119011 (coverage: Regression test for `assert!(!false)`) - rust-lang#119020 (remove `hex` dependency in bootstrap) r? `@ghost` `@rustbot` modify labels: rollup
|
Signed-off-by: onur-ozkan <work@onurozkan.dev>
87b5cbc to
81b98a0
Compare
|
@bors r=albertlarsan68 |
|
☀️ Test successful - checks-actions |
|
Finished benchmarking commit (3a2aa58): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 671.333s -> 672.166s (0.12%) |
First commit removes the
hexdependency, as we can achieve the same output with the added function, which is very small and simple.Second commit creates a test module for the helpers util and adds unit tests for multiple helper functions, including
hex_encode.