Skip to content

Commit c831daa

Browse files
Merge pull request #2 from johannes67890/sorting-algorithms
Sorting algorithms
2 parents 389b80c + 53cf278 commit c831daa

File tree

13 files changed

+648
-44
lines changed

13 files changed

+648
-44
lines changed

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rust-analyzer.linkedProjects": [
3+
".\\Cargo.toml"
4+
]
5+
}

Cargo.lock

Lines changed: 268 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dev-dependencies]
9-
criterion = "0.4"
9+
criterion = { version = "0.4", features = ["html_reports"] }
10+
rand = "0.8"
1011

1112
[[bench]]
1213
name = "sort_benchmark"
13-
harness = false
14+
harness = false
15+
16+
[dependencies]
17+
rand = "0.8"
18+
tui = "0.19"
19+
crossterm = "0.25"

0 commit comments

Comments
 (0)