-
Notifications
You must be signed in to change notification settings - Fork 38
/
Cargo.toml
36 lines (32 loc) · 1.07 KB
/
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
36
[package]
name = "dhat"
version = "0.3.3"
authors = ["Nicholas Nethercote <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
description = "A library for heap profiling and ad hoc profiling with DHAT."
readme = "README.md"
homepage = "https://github.com/nnethercote/dhat-rs"
repository = "https://github.com/nnethercote/dhat-rs"
keywords = ["profiling"]
categories = ["development-tools::profiling"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
backtrace = "0.3.63"
mintex = "0.1.2"
rustc-hash = "1.1"
lazy_static = "1.4"
parking_lot = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thousands = "0.2"
[dev-dependencies]
serial_test = "0.5"
# Some tests require debug info. `cargo test` enables debug info, but `cargo
# test --release` does not, so we enable it here. In Rust 1.56 and earlier,
# `profile.bench` was used for `cargo test --release`, but in Rust 1.57 this
# changed to `profile.release`. So we specify both.
[profile.bench]
debug = 1
[profile.release]
debug = 1