-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 971 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 971 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
[package]
name = "codspeed"
version = "4.4.1"
rust-version = "1.74" # MSRV
edition = "2021"
description = "Core instrumentation library for CodSpeed"
authors = ["Arthur Pastel <[email protected]>"]
documentation = "https://codspeed.io/docs/reference/codspeed-rust"
readme = "README.md"
repository = "https://github.com/CodSpeedHQ/codspeed-rust"
homepage = "https://codspeed.io"
license = "MIT OR Apache-2.0"
categories = [
"development-tools",
"development-tools::profiling",
"development-tools::testing",
]
keywords = ["codspeed", "benchmark"]
[dependencies]
anyhow = { workspace = true }
colored = "2.1.0"
glob = "0.3.2"
libc = "0.2.180"
nix = { version = "0.31.1", features = ["time"] }
getrandom = "0.2"
serde = { workspace = true }
serde_json = { workspace = true }
statrs = { version = "0.18.0", default-features = false }
[[bench]]
name = "native"
harness = false
[dev-dependencies]
tempfile = { workspace = true }
[build-dependencies]
cc = "1.0"