Skip to content
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
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,7 @@ https://blog.eastonman.com/blog/2021/02/use-perf/
> cargo install flamegraph
```

3. Libraries needed on Linux
```
> apt install libfontconfig1-dev
```

4. Relative dependancies
3. Relative dependancies
python3
kaleido, matplotlib (can be installed with pip...
```
Expand Down
8 changes: 8 additions & 0 deletions benchmarks/demo-compile-time/helloworld-no-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "helloworld"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
3 changes: 3 additions & 0 deletions benchmarks/demo-compile-time/helloworld-no-config/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
Loading