Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Apr 14, 2024
1 parent f6ab4c5 commit fa666f6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 25 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.12.0] - 2024-04-14
### Added
- The `--config` flag. That matches the `cargo build --config`.
Thanks to [@anthonydandrea](https://github.com/anthonydandrea).
Expand Down Expand Up @@ -227,7 +229,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- When running on an unsupported OS you will get an error and not a random panic.
- The table has a dynamic column width now.

[Unreleased]: https://github.com/RazrFalcon/cargo-bloat/compare/v0.11.1...HEAD
[Unreleased]: https://github.com/RazrFalcon/cargo-bloat/compare/v0.12.0...HEAD
[0.12.0]: https://github.com/RazrFalcon/cargo-bloat/compare/v0.11.1...v0.12.0
[0.11.1]: https://github.com/RazrFalcon/cargo-bloat/compare/v0.11.0...v0.11.1
[0.11.0]: https://github.com/RazrFalcon/cargo-bloat/compare/v0.10.1...v0.11.0
[0.10.1]: https://github.com/RazrFalcon/cargo-bloat/compare/v0.10.0...v0.10.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-bloat"
version = "0.11.1"
version = "0.12.0"
authors = ["Yevhenii Reizner <[email protected]>"]
description = "Find out what takes most of the space in your executable."
categories = ["development-tools::cargo-plugins"]
Expand Down
22 changes: 0 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,31 +91,9 @@ File .text Size Crate Name
0.5% 3.6% 13.5KiB filtered data size, the file size is 2.8MiB
```

Get a list of crates that took longest to compile:

```
% cargo bloat --time -j 1
Time Crate
1.42s pdb
1.37s regex_syntax
1.11s cargo_bloat
0.96s regex
0.58s binfarce
0.54s json
0.45s libc
0.22s uuid
0.20s fallible_iterator
0.19s pico_args
0.18s scroll
0.12s memmap2
0.09s multimap
0.06s term_size
```

Flags specific for `cargo-bloat`:
```
--crates Per crate bloatedness
--time Per crate build time. Will run `cargo clean` first
--filter <CRATE|REGEXP> Filter functions by crate
--split-std Split the 'std' crate to original crates like core, alloc, etc.
--no-relative-size Hide 'File' and '.text' columns
Expand Down

0 comments on commit fa666f6

Please sign in to comment.