Skip to content

Demote html5ever to the stable set. #1260

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions collector/benchmarks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ They mostly consist of real-world crates.
trait bounds, by having a lot of trait impls for a large number of different
types.
- **helloworld**: A trivial program. Gives a lower bound on compile time.
- **html5ever**: An HTML parser. Stresses macro parsing code significantly.
- **html5ever-0.26.0**: An HTML parser. Stresses macro parsing code.
- **hyper-2**: A fairly large crate. Utilizes async/await, and used by
many Rust programs.
Expand Down Expand Up @@ -135,7 +134,7 @@ Rust code being written today.
contain very little code, instead relying on sub-crates. This makes them less
interesting as benchmarks, because we only measure final crate compilation.
This is why there is no futures crate among the primary benchmarks.
- **html5ever**: See above.
- **html5ever**: See above. This is an older version (v0.5.4) of the crate.
- **inflate**: An old implementation of the DEFLATE algorithm. Contains
a very large function containing many locals and basic blocks, similar to
`keccak` but less extreme.
Expand Down
2 changes: 1 addition & 1 deletion collector/benchmarks/html5ever/perf-config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"touch_file": "src/lib.rs",
"category": "primary-and-stable"
"category": "stable"
}