Skip to content

Commit b391852

Browse files
committed
Add extra pieces.
1 parent 32af644 commit b391852

File tree

5 files changed

+19
-0
lines changed

5 files changed

+19
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
diff --git a/typenum-1.18.0/src/lib.rs b/typenum-1.18.0/src/lib.rs
2+
index f7a1241a..13582037 100644
3+
--- a/typenum-1.18.0/src/lib.rs
4+
+++ b/typenum-1.18.0/src/lib.rs
5+
@@ -173,3 +173,4 @@ mod sealed {
6+
impl Sealed for ATerm {}
7+
impl<V, A> Sealed for TArr<V, A> {}
8+
}
9+
+fn foo() { let a = 5; }

collector/compile-benchmarks/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ They mostly consist of real-world crates.
5656
ecosystem.
5757
- **typenum-1.17.0**: A library that encodes integer computation within the trait system. Serves as
5858
a stress test for the trait solver, but at the same time it is also a very popular crate.
59+
- **typenum-1.18.0**: A library that encodes integer computation within the trait system. Serves as
60+
a stress test for the trait solver, but at the same time it is also a very popular crate.
5961
- **unicode-normalization-0.1.19**: Unicode character composition and decomposition
6062
utilities. Uses huge `match` statements that stress the compiler in unusual
6163
ways.

collector/compile-benchmarks/REUSE.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,11 @@ path = "typenum-1.17.0/**"
279279
SPDX-FileCopyrightText = "typenum contributors"
280280
SPDX-License-Identifier = "MIT OR Apache-2.0"
281281

282+
[[annotations]]
283+
path = "typenum-1.18.0/**"
284+
SPDX-FileCopyrightText = "typenum contributors"
285+
SPDX-License-Identifier = "MIT OR Apache-2.0"
286+
282287
[[annotations]]
283288
path = "ucd/**"
284289
SPDX-FileCopyrightText = "ucd contributors"

collector/compile-benchmarks/typenum-1.18.0/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,5 @@ i128 = []
7171
no_std = []
7272
scale_info = ["scale-info/derive"]
7373
strict = []
74+
75+
[workspace]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"cargo_opts": "--features=i128,const-generics",
23
"artifact": "library",
34
"category": "primary"
45
}

0 commit comments

Comments
 (0)