Skip to content

Commit 8bbfcca

Browse files
committed
Add helloworld-tiny benchmark
1 parent 6b2e205 commit 8bbfcca

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed

collector/benchmarks/helloworld-tiny/Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[package]
2+
name = "helloworld-tiny"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
8+
[workspace]
9+
10+
[profile.release]
11+
opt-level = "z"
12+
lto = true
13+
codegen-units = 1
14+
panic = "abort"
15+
strip = true
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"category": "secondary",
3+
"excluded_profiles": ["Doc", "Check", "Debug"]
4+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello world!");
3+
}

0 commit comments

Comments
 (0)