-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
35 lines (32 loc) · 886 Bytes
/
Cargo.toml
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
[package]
name = "codspeed"
version = "2.10.1"
rust-version = "1.74" # MSRV
edition = "2021"
description = "Core instrumentation library for CodSpeed"
authors = ["Arthur Pastel <[email protected]>"]
documentation = "https://docs.codspeed.io"
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 }
bincode = "1.3.3"
colored = "2.0.0"
libc = "^0.2"
nix = { version = "0.29.0", features = ["fs"] }
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { version = "1.12.1", features = ["v4"] }
[[bench]]
name = "native"
harness = false
[dev-dependencies]
tempfile = { workspace = true }