-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (37 loc) · 749 Bytes
/
Cargo.toml
File metadata and controls
48 lines (37 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[workspace]
members = ["simple_bst"]
[package]
name = "bst"
version = "0.1.0"
authors = ["Sunjay Varma <varma.sunjay@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
bench = false
[dependencies]
[dev-dependencies]
rand = "0.8"
rayon = "1.5"
criterion = "0.3"
cfg-if = "1.0"
simple_bst = {path = "simple_bst", version = "0.1"}
static_assertions = "1.1"
fnv = "1.0"
[[bench]]
name = "map_comparison"
harness = false
[[bench]]
name = "set_comparison"
harness = false
[[bench]]
name = "name_resolution"
harness = false
[[bench]]
name = "movie_requests"
harness = false
[[bench]]
name = "two_sum"
harness = false
[[bench]]
name = "web_server"
harness = false