-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (25 loc) · 805 Bytes
/
Cargo.toml
File metadata and controls
31 lines (25 loc) · 805 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
[package]
name = "breezy-timer"
version = "1.0.0"
authors = ["Ed <barp.edoardo@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
keywords = ["benchmark", "benchmarking", "timing", "performance"]
categories = ["development-tools", "development-tools::profiling"]
description = "Painless and production friendly timers"
repository = "https://github.com/dominusmi/rust-breezy-timer"
exclude = [".idea"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cpu-time = "1.0.0"
global = "0.4.3"
breezy-timer-lib = { path = "breezy-timer-lib" }
[dev-dependencies]
criterion = "0.3.4"
rand = "0.8.3"
[[bench]]
name = "performance_benchmarks"
harness = false
[features]
breezy_timer = ["breezy-timer-lib/breezy_timer"]