File: Cargo.toml.orig

package info (click to toggle)
rust-tiny-bench 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 184 kB
  • sloc: makefile: 4
file content (37 lines) | stat: -rw-r--r-- 835 bytes parent folder | download
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
[package]
name = "tiny-bench"
version = "0.4.0"
edition = "2021"
authors = ["Embark <opensource@embark-studios.com>"]
license = "MIT OR Apache-2.0"
description = "A tiny benchmarking library"
readme = "../README.md"
homepage = "https://github.com/EmbarkStudios/tiny-bench"
repository = "https://github.com/EmbarkStudios/tiny-bench"
keywords = ["benchmarking"]

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

[features]
default = ["timer", "bench"]
timer = []
bench = []

[dependencies]

[[bench]]
name = "benchmark"
harness = false

[[example]]
name = "time_iterator"
required-features = ["timer"]
[[example]]
name = "time_loop"
required-features = ["timer"]
[[example]]
name = "bad_sort"
required-features = ["bench"]
[[example]]
name = "bench_compare"
required-features = ["bench"]