-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (39 loc) · 820 Bytes
/
Cargo.toml
File metadata and controls
50 lines (39 loc) · 820 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
49
50
[package]
name = "codspeed-divan-compat-examples"
version = "0.0.0"
edition = "2021"
description = "Examples for Divan, a comfy benchmarking framework."
publish = false
license = "MIT OR Apache-2.0"
[dependencies]
divan = { package = "codspeed-divan-compat", path = ".." }
fastrand = "2.3.0"
num-bigint = { version = "0.4", optional = true }
num-traits = { version = "0.2.14", optional = true }
[features]
default = ["big-math"]
big-math = ["num-bigint", "num-traits"]
[[bench]]
name = "math"
harness = false
[[bench]]
name = "sort"
harness = false
[[bench]]
name = "time"
harness = false
[[bench]]
name = "time_scale"
harness = false
[[bench]]
name = "env"
harness = false
[[bench]]
name = "the_algorithms"
harness = false
[[bench]]
name = "counters"
harness = false
[[bench]]
name = "alloc"
harness = false